summaryrefslogtreecommitdiff
path: root/term/users.c
diff options
context:
space:
mode:
authorMarcus Brinkmann <marcus@gnu.org>2002-01-30 17:43:26 +0000
committerMarcus Brinkmann <marcus@gnu.org>2002-01-30 17:43:26 +0000
commitb0cdcd631bc4e9cb46fb8b13abfcdea8722037f5 (patch)
treeaa6e275d1e3fd7147cce21e286382d1d893f96ee /term/users.c
parentd4a5c855a2bba060e65dae4f8781c8661db821db (diff)
term/
2002-01-30 Marcus Brinkmann <marcus@gnu.org> * users.c (trivfs_S_io_select): Remove IDTAG argument. Also in invocation of pty_io_select. * ptyio.c (pty_io_select): Likewise. pfinet/ 2002-01-30 Marcus Brinkmann <marcus@gnu.org> * tunnel.c (trivfs_S_io_select): Remove IDTAG argument.
Diffstat (limited to 'term/users.c')
-rw-r--r--term/users.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/term/users.c b/term/users.c
index 02bc4dee..77af90d6 100644
--- a/term/users.c
+++ b/term/users.c
@@ -1998,14 +1998,13 @@ error_t
trivfs_S_io_select (struct trivfs_protid *cred,
mach_port_t reply,
mach_msg_type_name_t reply_type,
- int *type,
- int *idtag)
+ int *type)
{
if (!cred)
return EOPNOTSUPP;
if (cred->pi.class == pty_class)
- return pty_io_select (cred, reply, type, idtag);
+ return pty_io_select (cred, reply, type);
if ((cred->po->openmodes & O_READ) == 0)
*type &= ~SELECT_READ;