diff options
author | Michael I. Bushnell <mib@gnu.org> | 1993-10-26 09:05:08 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1993-10-26 09:05:08 +0000 |
commit | 2e0fe701b52eca9c5d9d671e340422c08b014e3a (patch) | |
tree | 95c721c655af54f40ff7dd252ceb1910370d3096 | |
parent | cb7d41c423e5f037902b58340fbad63695a1d7cf (diff) |
Formerly startup.defs.~14~
-rw-r--r-- | hurd/startup.defs | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/hurd/startup.defs b/hurd/startup.defs index fcf1d3b0..0140eec7 100644 --- a/hurd/startup.defs +++ b/hurd/startup.defs @@ -51,20 +51,16 @@ routine startup_reboot ( refport: mach_port_t; reboot_code: int); -/* This call is made by the proc server for its initialization. - PROCESS is the proc server port for the startup program. - TASK and MSGPORT are set in the proc structure for the startup program. */ +/* This call is made by the proc server for its initialization, on its + bootstrap port. */ routine startup_procinit ( server: startup_t; - process: process_t; - out task: task_t; - out msgport: mach_port_make_send_t; - out auth: mach_port_t; out host_priv: mach_port_t; out device_master: mach_port_t); -/* This call is made by the auth server for its initialization. */ +/* 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; - out auth: mach_port_move_receive_t; - out host_priv: mach_port_t); + auth: mach_port_make_send_t); |