summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-07 17:01:48 +0000
committerRoland McGrath <roland@gnu.org>1996-05-07 17:01:48 +0000
commitf803def3aab219ed97d5e4a6f728faf4c139cb29 (patch)
tree9110f9c57df1783339a302b75c22443fe76cb60e /hurd
parent21acdcbbd0246384a01787aaf1099722c09ce991 (diff)
(io_identity): Server passed back fs id port and st_ino value.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/io.defs10
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);