diff options
-rw-r--r-- | boot/ChangeLog | 4 | ||||
-rw-r--r-- | boot/boot.c | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/boot/ChangeLog b/boot/ChangeLog index b9cb69c7..784acaf3 100644 --- a/boot/ChangeLog +++ b/boot/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 16 05:06:12 1999 Thomas Bushnell, BSG <tb@mit.edu> + + * boot.c (S_io_revoke): New (unsupported) routine. + 1998-12-26 Roland McGrath <roland@baalperazim.frob.com> * boot.c (isig): New variable. diff --git a/boot/boot.c b/boot/boot.c index 3bb5bc03..ab401872 100644 --- a/boot/boot.c +++ b/boot/boot.c @@ -1,6 +1,6 @@ /* Load a task using the single server, and then run it as if we were the kernel. - Copyright (C) 1993, 94, 95, 96, 97, 98 Free Software Foundation, Inc. + Copyright (C) 1993, 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -1857,6 +1857,12 @@ S_io_identity (mach_port_t obj, return EOPNOTSUPP; } +kern_return_t +S_io_revoke (mach_port_t obj) +{ + return EOPNOTSUPP; +} + /* Implementation of the Hurd terminal driver interface, which we only |