summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devio/io.c6
-rw-r--r--libtrivfs/io-select.c5
2 files changed, 4 insertions, 7 deletions
diff --git a/devio/io.c b/devio/io.c
index e9ba850f..43b379e8 100644
--- a/devio/io.c
+++ b/devio/io.c
@@ -139,13 +139,11 @@ trivfs_S_io_seek (struct trivfs_protid *cred,
/* SELECT_TYPE is the bitwise OR of SELECT_READ, SELECT_WRITE, and SELECT_URG.
Block until one of the indicated types of i/o can be done "quickly", and
- return the types that are then available. ID_TAG is returned as passed; it
- is just for the convenience of the user in matching up reply messages with
- specific requests sent. */
+ return the types that are then available. */
kern_return_t
trivfs_S_io_select (struct trivfs_protid *cred,
mach_port_t reply, mach_msg_type_name_t replytype,
- int *type, int *tag)
+ int *type)
{
if (!cred)
return EOPNOTSUPP;
diff --git a/libtrivfs/io-select.c b/libtrivfs/io-select.c
index 9de93176..7788da6e 100644
--- a/libtrivfs/io-select.c
+++ b/libtrivfs/io-select.c
@@ -1,5 +1,5 @@
/* Stub io_select RPC for trivfs library.
- Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
This file is part of the GNU Hurd.
@@ -27,8 +27,7 @@ kern_return_t
trivfs_S_io_select (struct trivfs_protid *cred,
mach_port_t reply,
mach_msg_type_name_t replytype,
- int *seltype,
- int *tag)
+ int *seltype)
{
if (!cred)
return EOPNOTSUPP;