diff options
author | Denis Vlasenko | 2007-10-10 14:38:47 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-10-10 14:38:47 +0000 |
commit | 82d38dab917754c9c37aaa7e414a47318b5082fe (patch) | |
tree | ea00ffed0879edb0f2dce87953d6f9c5908a18bf /libbb | |
parent | 141750e38897900db98eaeab1ea35c18f5794023 (diff) | |
download | busybox-82d38dab917754c9c37aaa7e414a47318b5082fe.zip busybox-82d38dab917754c9c37aaa7e414a47318b5082fe.tar.gz |
get rid of global "struct bb_applet *current_applet"
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/appletlib.c | 5 | ||||
-rw-r--r-- | libbb/vfork_daemon_rexec.c | 10 |
2 files changed, 7 insertions, 8 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 565dacf..cfa60a9 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -133,7 +133,10 @@ void bbox_prepare_main(char **argv) if (ENABLE_LOCALE_SUPPORT && getpid() != 1) setlocale(LC_ALL, ""); - /* Redundant for busybox, but needed for individual applets */ +#if ENABLE_FEATURE_INDIVIDUAL + /* Redundant for busybox (run_applet_and_exit covers that case) + * but needed for "individual applet" mode */ if (argv[1] && strcmp(argv[1], "--help") == 0) bb_show_usage(); +#endif } diff --git a/libbb/vfork_daemon_rexec.c b/libbb/vfork_daemon_rexec.c index 80c72f1..a01065d 100644 --- a/libbb/vfork_daemon_rexec.c +++ b/libbb/vfork_daemon_rexec.c @@ -104,7 +104,7 @@ int wait_pid(int *wstat, int pid) void save_nofork_data(struct nofork_save_area *save) { memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp)); - save->current_applet = current_applet; + save->applet_name = applet_name; save->xfunc_error_retval = xfunc_error_retval; save->option_mask32 = option_mask32; save->die_sleep = die_sleep; @@ -114,19 +114,16 @@ void save_nofork_data(struct nofork_save_area *save) void restore_nofork_data(struct nofork_save_area *save) { memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp)); - current_applet = save->current_applet; + applet_name = save->applet_name; xfunc_error_retval = save->xfunc_error_retval; option_mask32 = save->option_mask32; die_sleep = save->die_sleep; - - applet_name = current_applet->name; } int run_nofork_applet_prime(struct nofork_save_area *old, const struct bb_applet *a, char **argv) { int rc, argc; - current_applet = a; applet_name = a->name; xfunc_error_retval = EXIT_FAILURE; /*option_mask32 = 0; - not needed */ @@ -193,8 +190,7 @@ int spawn_and_wait(char **argv) return wait4pid(rc); /* child */ xfunc_error_retval = EXIT_FAILURE; - current_applet = a; - run_current_applet_and_exit(argv); + run_appletstruct_and_exit(a, argv); #endif } #endif /* FEATURE_PREFER_APPLETS */ |