summaryrefslogtreecommitdiff
path: root/term
diff options
context:
space:
mode:
Diffstat (limited to 'term')
-rw-r--r--term/ChangeLog6
-rw-r--r--term/ptyio.c2
-rw-r--r--term/users.c5
3 files changed, 9 insertions, 4 deletions
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;