diff options
author | Roland McGrath <roland@gnu.org> | 1996-04-28 23:16:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-04-28 23:16:02 +0000 |
commit | 5279347d044b999b6611b88f833a674ef70d3527 (patch) | |
tree | 01415b8791cb066565a50424a082a67d310f0854 | |
parent | 78e57fcb634bf7f738b67ef26da6f13ed0b36ffe (diff) |
(reboot_system): Make that 1 minute.
-rw-r--r-- | init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c index a6e0a718..e6f6cd86 100644 --- a/init/init.c +++ b/init/init.c @@ -156,7 +156,7 @@ reboot_system (int flags) error_t err; printf ("init: notifying %p\n", (void *) n->notify_port); fflush (stdout); - err = msg_startup_dosync (n->notify_port, 1000); /* 1 second to reply */ + err = msg_startup_dosync (n->notify_port, 60000); /* 1 minute to reply */ if (err && err != MACH_SEND_INVALID_DEST) { printf ("init: %p complained: %s\n", |