Adjustments for Johns init stuff,

-Erik
This commit is contained in:
Eric Andersen
1999-12-09 22:39:55 +00:00
parent f95ca97d1b
commit 6805d5d69e
5 changed files with 15 additions and 8 deletions

3
halt.c
View File

@@ -26,6 +26,7 @@
extern int
halt_main(int argc, char ** argv)
{
exit( kill(1, SIGUSR1));
/* don't assume init's pid == 1 */
exit( kill(findInitPid(), SIGUSR1));
}