diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-05-13 19:25:17 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-05-13 19:25:17 +0000 |
commit | 8f9bc8670a72780b53f1b2827f6610af595f3346 (patch) | |
tree | 018c41a25c4e4b17322bd0fe7bdb7a9ba85d25df /init | |
parent | e87ee5aee9d814f864d90c01a178f1b1f9a6ec22 (diff) |
Formerly init.c.~23~
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/init/init.c b/init/init.c index cda6fde9..c6566ea8 100644 --- a/init/init.c +++ b/init/init.c @@ -421,6 +421,10 @@ launch_system (void) device_master = 0; #endif + /* Declare that the filesystem and auth are our children. */ + proc_child (procserver, fstask); + proc_child (procserver, authtask); + proc_task2proc (procserver, authtask, &authproc); startup_authinit_reply (authreply, authreplytype, 0, authproc, MACH_MSG_TYPE_MOVE_SEND); @@ -446,10 +450,6 @@ launch_system (void) authserver)) perror ("fsys_init"); - /* Declare that the filesystem and auth are our children. */ - proc_child (procserver, fstask); - proc_child (procserver, authtask); - run_for_real ("/bin/sh"); printf ("Init has completed.\n"); fflush (stdout); |