summaryrefslogtreecommitdiff
path: root/hurd/fsys_reply.defs
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-01-02 02:08:11 +0000
committerRoland McGrath <roland@gnu.org>2002-01-02 02:08:11 +0000
commit8c14ee10c548dd75c26b2e929f5bd4acfd480086 (patch)
tree44ef170bff4982df2ea1ecd392bafe0ead3d075e /hurd/fsys_reply.defs
parenta7918253586985805dc88c2b743bf05c7b0daf48 (diff)
2002-01-01 Roland McGrath <roland@frob.com>
* hurd_types.defs (RETURN_CODE_ARG): New macro, definition depends on [HAVE_MIG_RETCODE]. * auth_reply.defs: Replace return code args with that. * 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.defs18
1 files changed, 9 insertions, 9 deletions
diff --git a/hurd/fsys_reply.defs b/hurd/fsys_reply.defs
index 6af94882..5fdce5f4 100644
--- a/hurd/fsys_reply.defs
+++ b/hurd/fsys_reply.defs
@@ -28,23 +28,23 @@ type reply_port_t = polymorphic | MACH_MSG_TYPE_PORT_SEND_ONCE
simpleroutine fsys_startup_reply (
reply_port: reply_port_t;
-! errorcode: kern_return_t, RETCODE;
+ RETURN_CODE_ARG;
realnode: mach_port_send_t);
simpleroutine fsys_goaway_reply (
reply_port: reply_port_t;
- errorcode: kern_return_t, RETCODE);
+ RETURN_CODE_ARG);
simpleroutine fsys_getroot_reply (
reply_port: reply_port_t;
- errorcode: kern_return_t, RETCODE;
+ RETURN_CODE_ARG;
do_retry: retry_type;
retry_name: string_t;
file: mach_port_send_t);
simpleroutine fsys_getfile_reply (
reply_port: reply_port_t;
- errorcode: kern_return_t, RETCODE;
+ RETURN_CODE_ARG;
file: mach_port_send_t);
simpleroutine fsys_syncfs_reply (
@@ -53,24 +53,24 @@ simpleroutine fsys_syncfs_reply (
simpleroutine fsys_set_options_reply (
reply_port: reply_port_t;
- errorcode: kern_return_t, RETCODE);
+ RETURN_CODE_ARG);
simpleroutine fsys_getpriv_reply (
reply_port_: reply_port_t;
- errorcode: kern_return_t, RETCODE;
+ RETURN_CODE_ARG;
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;
- errorcode: kern_return_t, RETCODE);
+ RETURN_CODE_ARG);
simpleroutine fsys_forward_reply (
reply_port: reply_port_t;
- errorcode: kern_return_t, RETCODE);
+ RETURN_CODE_ARG);
simpleroutine fsys_get_options_reply (
reply_port: reply_port_t;
- errorcode: kern_return_t, RETCODE;
+ RETURN_CODE_ARG;
options: data_t);