diff options
-rw-r--r-- | hurd/startup.defs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/hurd/startup.defs b/hurd/startup.defs index 7add9c36..72015bd7 100644 --- a/hurd/startup.defs +++ b/hurd/startup.defs @@ -51,21 +51,26 @@ routine startup_reboot ( refport: mach_port_t; reboot_code: int); +/* NOTE: All changes two these last two must be reflected in + startup_reply.defs. */ + /* This call is made by the proc server for its initialization, on its bootstrap port. */ routine startup_procinit ( server: startup_t; + sreplyport reply_port: reply_port_t; startup_proc: process_t; fs_proc: process_t; auth_proc: process_t; out auth: auth_t; - out host_priv: mach_port_t; - out device_master: mach_port_t); + out host_priv: mach_port_move_send_t; + out device_master: mach_port_move_send_t); /* This call is made by the auth server for its initialization. The auth server will create an all-root authentication handle to give to the startup server. */ routine startup_authinit ( server: startup_t; + sreplyport reply_port: reply_port_t; auth: mach_port_make_send_t; out proc: mach_port_move_send_t); |