summaryrefslogtreecommitdiff
path: root/hurd/io.defs
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-07 16:59:03 +0000
committerRoland McGrath <roland@gnu.org>1996-05-07 16:59:03 +0000
commit21acdcbbd0246384a01787aaf1099722c09ce991 (patch)
treed56442f56450385d982da9a2e76ebb8bc5489c56 /hurd/io.defs
parent6a9fb613badc1972f88b659ce1747b3393e1a94b (diff)
(io_identity): Server passes back st_dev and st_ino values too.
Diffstat (limited to 'hurd/io.defs')
-rw-r--r--hurd/io.defs7
1 files changed, 3 insertions, 4 deletions
diff --git a/hurd/io.defs b/hurd/io.defs
index 5bc8e2b1..1d9319d5 100644
--- a/hurd/io.defs
+++ b/hurd/io.defs
@@ -308,12 +308,11 @@ routine io_pathconf (
/* Return the identity port for the object underlying IO_OBJECT.
Different I/O ports for the same object all have the same identity
- port. FILENO is the file serial number that appears in the `d_fileno'
- field of containing directory entries in the containing filesystem, the
- same as the `st_ino' value returned by io_stat for this object. */
+ port. DEV and FILENO are the same values returned by io_stat for
+ `st_dev' and `st_ino'. */
routine io_identity (
io_object: io_t;
RPT
out idport: mach_port_send_t;
- out fileno: int);
+ out dev, out fileno: int);