diff options
-rw-r--r-- | term/ChangeLog | 7 | ||||
-rw-r--r-- | term/users.c | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/term/ChangeLog b/term/ChangeLog index e26f5f95..a6377a7d 100644 --- a/term/ChangeLog +++ b/term/ChangeLog @@ -1,3 +1,10 @@ +Sat Feb 20 04:59:15 1999 Thomas Bushnell, BSG <tb@mit.edu> + + * users.c (trivfs_S_io_revoke): Release global_lock before + beginning the iteration. + + * users.c (trivfs_S_io_revoke): Add reply, reply_type args. + 1999-02-06 Mark Kettenis <kettenis@gnu.org> * main.c (main): Initialize status from underlying node. diff --git a/term/users.c b/term/users.c index 31780aed..8849c4dc 100644 --- a/term/users.c +++ b/term/users.c @@ -816,7 +816,9 @@ trivfs_S_io_readable (struct trivfs_protid *cred, } error_t -trivfs_S_io_revoke (struct trivfs_protid *cred) +trivfs_S_io_revoke (struct trivfs_protid *cred, + mach_port_t reply, + mach_msg_type_name_t replytype) { struct stat st; @@ -850,9 +852,10 @@ trivfs_S_io_revoke (struct trivfs_protid *cred) } } + mutex_unlock (&global_lock); + ports_bucket_iterate (term_bucket, iterator_function); - mutex_unlock (&global_lock); return 0; } |