diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-07 17:01:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-07 17:01:48 +0000 |
commit | f803def3aab219ed97d5e4a6f728faf4c139cb29 (patch) | |
tree | 9110f9c57df1783339a302b75c22443fe76cb60e | |
parent | 21acdcbbd0246384a01787aaf1099722c09ce991 (diff) |
(io_identity): Server passed back fs id port and st_ino value.
-rw-r--r-- | hurd/io.defs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/hurd/io.defs b/hurd/io.defs index 1d9319d5..7cb85478 100644 --- a/hurd/io.defs +++ b/hurd/io.defs @@ -307,12 +307,14 @@ routine io_pathconf ( out value: int); /* Return the identity port for the object underlying IO_OBJECT. - Different I/O ports for the same object all have the same identity - port. DEV and FILENO are the same values returned by io_stat for - `st_dev' and `st_ino'. */ + Different I/O ports for the same object all have the same identity port. + FSIDPORT is an identity port returned by for all objects in the same + filesystem. FILENO is the same value returned by io_stat for `st_ino'. + */ routine io_identity ( io_object: io_t; RPT out idport: mach_port_send_t; - out dev, out fileno: int); + out fsidport: mach_port_send_t; + out fileno: int); |