diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-02-16 10:54:55 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-02-16 10:54:55 +0000 |
commit | 5677d0d490c8e941296104ff3a84f98cf662480d (patch) | |
tree | a2902705cccfb1497c4f9ef7e4b0c46f01fe4971 /boot/boot.c | |
parent | de81b9f33a8790a6cea0c8d62830536d37167486 (diff) |
Tue Feb 16 05:06:12 1999 Thomas Bushnell, BSG <tb@mit.edu>
* boot.c (S_io_revoke): New (unsupported) routine.
Diffstat (limited to 'boot/boot.c')
-rw-r--r-- | boot/boot.c | 8 |
1 files changed, 7 insertions, 1 deletions
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 |