summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-03-22 23:16:10 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-03-22 23:16:10 +0000
commitf90ef78d8456cd32919d0df196ef7d7f07db5f6d (patch)
tree637a556bdbb3f03aa6e6472b9d115cabbbcb29fe /init
parent7853f587e90f5e9897872b8adb496855eb2fc0c4 (diff)
Formerly init.c.~5~
Diffstat (limited to 'init')
-rw-r--r--init/init.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/init/init.c b/init/init.c
index 450a38d7..678aa2d9 100644
--- a/init/init.c
+++ b/init/init.c
@@ -75,7 +75,7 @@ mach_port_t authserver;
mach_port_t procserver;
/* The tasks of auth and proc and the bootstrap filesystem. */
-task_t authtask, prottask, fstask;
+task_t authtask, proctask, fstask;
char **global_argv;
@@ -146,9 +146,10 @@ request_server (mach_msg_header_t *inp,
startup_server (inp, outp));
}
-/* Run SERVER, giving it INIT_PORT_MAX initial ports from PORTS. */
+/* Run SERVER, giving it INIT_PORT_MAX initial ports from PORTS.
+ Set TASK to be the task port of the new image. */
void
-run (char *server, mach_port_t *ports)
+run (char *server, mach_port_t *ports, task_t *task)
{
error_t err;
char buf[BUFSIZ];
@@ -170,7 +171,8 @@ run (char *server, mach_port_t *ports)
perror (prog);
else
{
- err = file_exec (file, MACH_PORT_NULL, EXEC_NEWTASK,
+ task_create (mach_task_self (), task);
+ err = file_exec (file, *task, 0,
NULL, 0, /* No args. */
NULL, 0, /* No env. */
NULL, MACH_MSG_TYPE_COPY_SEND, 0, /* No dtable. */
@@ -271,8 +273,8 @@ launch_system (void)
MACH_MSG_TYPE_MOVE_SEND);
/* Give the library our auth and proc server ports. */
- _hurd_port_init (&_hurd_ports[INIT_PORT_AUTH], authserver);
- _hurd_port_init (&_hurd_ports[INIT_PORT_PROC], procserver);
+ _hurd_port_set (&_hurd_ports[INIT_PORT_AUTH], authserver);
+ _hurd_port_set (&_hurd_ports[INIT_PORT_PROC], procserver);
/* Tell the proc server our msgport and where our args and
environment are. */