summaryrefslogtreecommitdiff
path: root/hurd/io.defs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-05-06 17:30:58 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-05-06 17:30:58 +0000
commit9ecb4ee15e0d60d977536eb893fa693229f5e9b6 (patch)
tree18968fd3201e39d62b85b14fa7b66776d107a534 /hurd/io.defs
parente5113e8b6f96fac4eed362c9965176dbea7ef48d (diff)
(io_verify_identity): Delete RPC.
(io_identity): New RPC.
Diffstat (limited to 'hurd/io.defs')
-rw-r--r--hurd/io.defs12
1 files changed, 6 insertions, 6 deletions
diff --git a/hurd/io.defs b/hurd/io.defs
index 422a9566..0af181f3 100644
--- a/hurd/io.defs
+++ b/hurd/io.defs
@@ -299,7 +299,6 @@ routine io_readsleep (
routine io_sigio (
io_object: io_t RPTLAST);
-
/* Return Posix.1 pathconf information. */
routine io_pathconf (
io_object: io_t;
@@ -307,10 +306,11 @@ routine io_pathconf (
name: int;
out value: int);
-
-/* Return success iff TEST is an io port open on the same object as IO_OBJECT.
- Otherwise return EINVAL. */
-routine io_verify_identity (
+/* Return the identity port for the object underlying IO_OBJECT.
+ Different I/O ports for the same object all have the same identity
+ port. */
+routine io_identity (
io_object: io_t;
RPT
- test: io_t);
+ out idport: mach_port_send_t);
+