diff options
-rw-r--r-- | hurd/auth_reply.defs | 4 | ||||
-rw-r--r-- | hurd/crash_reply.defs | 2 | ||||
-rw-r--r-- | hurd/fsys_reply.defs | 18 | ||||
-rw-r--r-- | hurd/io_reply.defs | 52 | ||||
-rw-r--r-- | hurd/msg_reply.defs | 4 | ||||
-rw-r--r-- | hurd/process_reply.defs | 6 | ||||
-rw-r--r-- | hurd/startup_reply.defs | 6 |
7 files changed, 46 insertions, 46 deletions
diff --git a/hurd/auth_reply.defs b/hurd/auth_reply.defs index bea6379d..c44152d5 100644 --- a/hurd/auth_reply.defs +++ b/hurd/auth_reply.defs @@ -31,12 +31,12 @@ skip; /* auth_makeauth */ simpleroutine auth_user_authenticate_reply ( reply_port: reply_port_t; - in return_code: kern_return_t, RetCode; + in return_code: kern_return_t, RETCODE; in newhandle: mach_port_send_t); simpleroutine auth_server_authenticate_reply ( reply_port: reply_port_t; - in return_code: kern_return_t, RetCode; + in return_code: kern_return_t, RETCODE; in gen_uids: idarray_t; in aux_uids: idarray_t; in gen_gids: idarray_t; diff --git a/hurd/crash_reply.defs b/hurd/crash_reply.defs index de06242d..27880a15 100644 --- a/hurd/crash_reply.defs +++ b/hurd/crash_reply.defs @@ -27,4 +27,4 @@ subsystem crash_reply 32100; /* must match crash + 100 */ simpleroutine crash_dump_task_reply ( ureply_port: mach_port_poly_t; - result: int, RetCode); + result: int, RETCODE); diff --git a/hurd/fsys_reply.defs b/hurd/fsys_reply.defs index de745375..6af94882 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/io_reply.defs b/hurd/io_reply.defs index 865b27a6..121fdc88 100644 --- a/hurd/io_reply.defs +++ b/hurd/io_reply.defs @@ -33,121 +33,121 @@ type reply_port_t = polymorphic | MACH_MSG_TYPE_MAKE_SEND_ONCE simpleroutine io_write_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; amount: int); simpleroutine io_read_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; data: data_t); simpleroutine io_seek_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; newp: off_t); simpleroutine io_readable_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; amount: int); simpleroutine io_set_all_openmodes_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_get_openmodes_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; bits: int); simpleroutine io_set_some_openmodes_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_clear_some_openmodes_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_async_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; async_id_port: mach_port_send_t); simpleroutine io_mod_owner_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_get_owner_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; owner: pid_t); simpleroutine io_get_icky_async_id_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; id_port: mach_port_send_t); simpleroutine io_select_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; select_result: int); simpleroutine io_stat_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; stat_info: io_statbuf_t); skip; /* io_reauthenticate has no reply */ simpleroutine io_restrict_auth_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; new_object: mach_port_send_t); simpleroutine io_duplicate_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; newport: mach_port_send_t); simpleroutine io_map_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; rdobject: mach_port_send_t; wrobject: mach_port_send_t); simpleroutine io_map_cntl_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode; + return_code: kern_return_t, RETCODE; memobj: mach_port_send_t); simpleroutine io_get_conch_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_release_conch_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_eofnotify_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_prenotify_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_postnotify_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_readnotify_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_readsleep_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); simpleroutine io_sigio_reply ( reply: reply_port_t; - return_code: kern_return_t, RetCode); + return_code: kern_return_t, RETCODE); diff --git a/hurd/msg_reply.defs b/hurd/msg_reply.defs index f824f136..5fe04664 100644 --- a/hurd/msg_reply.defs +++ b/hurd/msg_reply.defs @@ -26,7 +26,7 @@ type reply_port_t = polymorphic | MACH_MSG_TYPE_PORT_SEND_ONCE simpleroutine msg_sig_post_reply ( reply_port: reply_port_t; - in return_code: kern_return_t, RetCode); + in return_code: kern_return_t, RETCODE); skip; /* msg_proc_newids */ skip; /* msg_add_auth */ @@ -52,4 +52,4 @@ skip; /* msg_startup_dosync */ simpleroutine msg_sig_post_untraced_reply ( reply_port: reply_port_t; - in return_code: kern_return_t, RetCode); + in return_code: kern_return_t, RETCODE); diff --git a/hurd/process_reply.defs b/hurd/process_reply.defs index ad5ee96d..7db13572 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 043ad918..43fe93a6 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); |