diff options
-rw-r--r-- | pfinet/ChangeLog | 4 | ||||
-rw-r--r-- | pfinet/tunnel.c | 3 | ||||
-rw-r--r-- | term/ChangeLog | 6 | ||||
-rw-r--r-- | term/ptyio.c | 2 | ||||
-rw-r--r-- | term/users.c | 5 |
5 files changed, 14 insertions, 6 deletions
diff --git a/pfinet/ChangeLog b/pfinet/ChangeLog index fd337efa..fd018272 100644 --- a/pfinet/ChangeLog +++ b/pfinet/ChangeLog @@ -1,3 +1,7 @@ +2002-01-30 Marcus Brinkmann <marcus@gnu.org> + + * tunnel.c (trivfs_S_io_select): Remove IDTAG argument. + 2001-10-14 Marcus Brinkmann <marcus@gnu.org> * glue-include/linux/sched.h (process_schedule_timeout): New diff --git a/pfinet/tunnel.c b/pfinet/tunnel.c index 93bcbb02..4f0da95f 100644 --- a/pfinet/tunnel.c +++ b/pfinet/tunnel.c @@ -449,8 +449,7 @@ 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) { struct tunnel_device *tdev; diff --git a/term/ChangeLog b/term/ChangeLog index e31d4c37..df7becb9 100644 --- a/term/ChangeLog +++ b/term/ChangeLog @@ -1,3 +1,9 @@ +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. + 2002-01-04 Marcus Brinkmann <marcus@gnu.org> * devio.c (bogus_speed_to_real_speed): Handle B57600, B115200 if diff --git a/term/ptyio.c b/term/ptyio.c index 94aec468..9ea632a7 100644 --- a/term/ptyio.c +++ b/term/ptyio.c @@ -445,7 +445,7 @@ pty_io_readable (int *amt) /* Validation has already been done by trivfs_S_io_select. */ error_t pty_io_select (struct trivfs_protid *cred, mach_port_t reply, - int *type, int *idtag) + int *type) { int avail = 0; 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; |