diff options
author | Roland McGrath <roland@gnu.org> | 2001-12-31 23:39:26 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-12-31 23:39:26 +0000 |
commit | 6234cb0df35caf9e20dbe9f939236e6cdbdb2e20 (patch) | |
tree | ae824b207dfbb779e9b412f2a5ca22cb336ba764 /hurd/fsys_reply.defs | |
parent | 24bed25cb9cac783159fe5ce6b7c16cfb8a722cd (diff) |
2001-12-31 Roland McGrath <roland@frob.com>
* auth_reply.defs: Change return code parameters to use `RetCode'
keyword, for compatibility with OSF Mach mig.
* crash_reply.defs: Likewise.
* fsys_reply.defs: Likewise.
* io_reply.defs: Likewise.
* msg_reply.defs: Likewise.
* process_reply.defs: Likewise.
* startup_reply.defs: Likewise.
Diffstat (limited to 'hurd/fsys_reply.defs')
-rw-r--r-- | hurd/fsys_reply.defs | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/hurd/fsys_reply.defs b/hurd/fsys_reply.defs index b3676e64..b1397041 100644 --- a/hurd/fsys_reply.defs +++ b/hurd/fsys_reply.defs @@ -1,5 +1,5 @@ /* Reply half of fsys - Copyright (C) 1991, 1993, 1994, 1995 Free Software Foundation + Copyright (C) 1991,93,94,95,2001 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -8,7 +8,7 @@ it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. -The GNU Hurd is distributed in the hope that it will be useful, +The GNU Hurd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -27,24 +27,24 @@ type reply_port_t = polymorphic | MACH_MSG_TYPE_PORT_SEND_ONCE ctype: mach_port_t; simpleroutine fsys_startup_reply ( - repsy_port: reply_port_t; - retcode: kern_return_t; + reply_port: reply_port_t; + errorcode: kern_return_t, retcode; realnode: mach_port_send_t); simpleroutine fsys_goaway_reply ( reply_port: reply_port_t; - retcode: kern_return_t); + errorcode: kern_return_t, retcode); simpleroutine fsys_getroot_reply ( reply_port: reply_port_t; - retcode: kern_return_t; + errorcode: kern_return_t, retcode; do_retry: retry_type; retry_name: string_t; file: mach_port_send_t); simpleroutine fsys_getfile_reply ( reply_port: reply_port_t; - retcode: kern_return_t; + errorcode: kern_return_t, retcode; file: mach_port_send_t); simpleroutine fsys_syncfs_reply ( @@ -53,25 +53,24 @@ simpleroutine fsys_syncfs_reply ( simpleroutine fsys_set_options_reply ( reply_port: reply_port_t; - retcode: kern_return_t); + errorcode: kern_return_t, retcode); simpleroutine fsys_getpriv_reply ( reply_port_: reply_port_t; - retcode: kern_return_t; + errorcode: kern_return_t, retcode; host_priv: mach_port_send_t; device_master: mach_port_send_t; fstask: mach_port_send_t); simpleroutine fsys_init_reply ( reply_port: reply_port_t; - retcode: kern_return_t); + errorcode: kern_return_t, retcode); simpleroutine fsys_forward_reply ( reply_port: reply_port_t; - retcode: kern_return_t); + errorcode: kern_return_t, retcode); simpleroutine fsys_get_options_reply ( reply_port: reply_port_t; - retcode: kern_return_t; + errorcode: kern_return_t, retcode; options: data_t); - |