diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-07 16:54:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-07 16:54:16 +0000 |
commit | 6a9fb613badc1972f88b659ce1747b3393e1a94b (patch) | |
tree | d89444d38a7a722110316d6e3c5b78bbb4da02a2 /hurd | |
parent | 98578e4f671e4b09a083d8ddd04b9596751a82b5 (diff) |
(io_identity): Server passes back st_ino value too.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/io.defs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/hurd/io.defs b/hurd/io.defs index 0af181f3..5bc8e2b1 100644 --- a/hurd/io.defs +++ b/hurd/io.defs @@ -308,9 +308,12 @@ 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. */ + 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. */ routine io_identity ( io_object: io_t; RPT - out idport: mach_port_send_t); + out idport: mach_port_send_t; + out fileno: int); |