diff options
-rw-r--r-- | hurd/fsys_reply.defs | 18 | ||||
-rw-r--r-- | hurd/process_reply.defs | 6 | ||||
-rw-r--r-- | hurd/startup_reply.defs | 6 |
3 files changed, 15 insertions, 15 deletions
diff --git a/hurd/fsys_reply.defs b/hurd/fsys_reply.defs index b1397041..de745375 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; + errorcode: kern_return_t, RetCode; realnode: mach_port_send_t); simpleroutine fsys_goaway_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode); + errorcode: kern_return_t, RetCode); simpleroutine fsys_getroot_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode; + 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; - errorcode: kern_return_t, retcode; + errorcode: kern_return_t, RetCode; 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); + errorcode: kern_return_t, RetCode); simpleroutine fsys_getpriv_reply ( reply_port_: reply_port_t; - errorcode: kern_return_t, retcode; + 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; - errorcode: kern_return_t, retcode); + errorcode: kern_return_t, RetCode); simpleroutine fsys_forward_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode); + errorcode: kern_return_t, RetCode); simpleroutine fsys_get_options_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode; + errorcode: kern_return_t, RetCode; options: data_t); diff --git a/hurd/process_reply.defs b/hurd/process_reply.defs index 96d59ae8..ad5ee96d 100644 --- a/hurd/process_reply.defs +++ b/hurd/process_reply.defs @@ -39,7 +39,7 @@ skip; /* child */ simpleroutine proc_setmsgport_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode; + errorcode: kern_return_t, RetCode; in oldmsgport: mach_port_t); skip; /* reassign */ @@ -50,12 +50,12 @@ skip; /* get_arg_locations */ simpleroutine proc_getmsgport_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode; + errorcode: kern_return_t, RetCode; in msgports: mach_port_t); simpleroutine proc_wait_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode; + errorcode: kern_return_t, RetCode; in status: int; in sigcode: int; in rusage: rusage_t; diff --git a/hurd/startup_reply.defs b/hurd/startup_reply.defs index e78df852..043ad918 100644 --- a/hurd/startup_reply.defs +++ b/hurd/startup_reply.defs @@ -33,14 +33,14 @@ STARTUP_IMPORTS simpleroutine startup_essential_task_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode); + errorcode: kern_return_t, RetCode); skip; /* startup_request_notification */ skip; /* startup_reboot */ simpleroutine startup_procinit_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode; + errorcode: kern_return_t, RetCode; startup_task: task_t; auth: auth_t; host_priv: mach_port_send_t; @@ -48,5 +48,5 @@ simpleroutine startup_procinit_reply ( simpleroutine startup_authinit_reply ( reply_port: reply_port_t; - errorcode: kern_return_t, retcode; + errorcode: kern_return_t, RetCode; proc: mach_port_send_t); |