diff options
author | Ron Yorston <rmy@pobox.com> | 2015-10-13 14:45:51 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2015-10-13 14:45:51 +0100 |
commit | 8e509f11bceeec419abc718300bef7422d1fee4c (patch) | |
tree | fdfbc752ad94102e3613a5d7254f14a93eaf7f56 /init | |
parent | 420f5edfe7676fe6e7cddbbf15c04649d096e422 (diff) | |
parent | 4d0c1ea4784c9844f8468d97ca5c26d3c70f9921 (diff) | |
download | busybox-w32-8e509f11bceeec419abc718300bef7422d1fee4c.tar.gz busybox-w32-8e509f11bceeec419abc718300bef7422d1fee4c.tar.bz2 busybox-w32-8e509f11bceeec419abc718300bef7422d1fee4c.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c index b2fe85635..80c5d0f74 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -1015,6 +1015,11 @@ void handle_sigsegv(int sig, siginfo_t *info, void *ucontext) | |||
1015 | } | 1015 | } |
1016 | #endif | 1016 | #endif |
1017 | 1017 | ||
1018 | static void sleep_much(void) | ||
1019 | { | ||
1020 | sleep(30 * 24*60*60); | ||
1021 | } | ||
1022 | |||
1018 | int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 1023 | int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
1019 | int init_main(int argc UNUSED_PARAM, char **argv) | 1024 | int init_main(int argc UNUSED_PARAM, char **argv) |
1020 | { | 1025 | { |
@@ -1051,12 +1056,12 @@ int init_main(int argc UNUSED_PARAM, char **argv) | |||
1051 | 1056 | ||
1052 | /* If, say, xmalloc would ever die, we don't want to oops kernel | 1057 | /* If, say, xmalloc would ever die, we don't want to oops kernel |
1053 | * by exiting. | 1058 | * by exiting. |
1054 | * NB: we set die_sleep *after* PID 1 check and bb_show_usage. | 1059 | * NB: we set die_func *after* PID 1 check and bb_show_usage. |
1055 | * Otherwise, for example, "init u" ("please rexec yourself" | 1060 | * Otherwise, for example, "init u" ("please rexec yourself" |
1056 | * command for sysvinit) will show help text (which isn't too bad), | 1061 | * command for sysvinit) will show help text (which isn't too bad), |
1057 | * *and sleep forever* (which is bad!) | 1062 | * *and sleep forever* (which is bad!) |
1058 | */ | 1063 | */ |
1059 | die_sleep = 30 * 24*60*60; | 1064 | die_func = sleep_much; |
1060 | 1065 | ||
1061 | /* Figure out where the default console should be */ | 1066 | /* Figure out where the default console should be */ |
1062 | console_init(); | 1067 | console_init(); |