diff options
-rw-r--r-- | hurd/=pending-changes | 2 | ||||
-rw-r--r-- | hurd/ChangeLog | 4 | ||||
-rw-r--r-- | hurd/io.defs | 7 |
3 files changed, 10 insertions, 3 deletions
diff --git a/hurd/=pending-changes b/hurd/=pending-changes index 70da98eb..d57270a9 100644 --- a/hurd/=pending-changes +++ b/hurd/=pending-changes @@ -10,8 +10,6 @@ Change file_getfh and fsys_getfile to use more convenient interface. Add serverport arg to auth_user_authenticate; change auth to use it to abort auth_user_authenticate when it's dead. -Add io_revoke. - Add optional timeout arg to msg.defs. Add file_fetch_dir. diff --git a/hurd/ChangeLog b/hurd/ChangeLog index 267023c3..aaa351c7 100644 --- a/hurd/ChangeLog +++ b/hurd/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 16 04:34:02 1999 Thomas Bushnell, BSG <tb@mit.edu> + + * io.defs (io_revoke): New RPC. + Sun Jan 31 18:21:58 1999 Thomas Bushnell, BSG <tb@mit.edu> * fs.defs (file_utimes): Extend documentation. diff --git a/hurd/io.defs b/hurd/io.defs index 7cb85478..75a8f58b 100644 --- a/hurd/io.defs +++ b/hurd/io.defs @@ -1,5 +1,5 @@ /* Definitions for generic IO interface - Copyright (C) 1991, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1991, 1993, 1994, 1995, 1996, 1999 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -318,3 +318,8 @@ routine io_identity ( out fsidport: mach_port_send_t; out fileno: int); +/* Revoke the access of all descriptors except this one currently open + on the specified object. */ +routine io_revoke ( + io_object: io_t RPTLAST); + |