diff options
author | Ron Yorston <rmy@pobox.com> | 2017-08-01 19:47:20 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-08-01 19:47:20 +0100 |
commit | f5051d07f196a8ff7aeaae762333d5aa2b824088 (patch) | |
tree | 3b61563a88c7fe57fddc4bc24a6a42b7ea755c21 /include | |
parent | 2a210715a9a85fb48cf8f636c74e63f54605eedc (diff) | |
download | busybox-w32-f5051d07f196a8ff7aeaae762333d5aa2b824088.tar.gz busybox-w32-f5051d07f196a8ff7aeaae762333d5aa2b824088.tar.bz2 busybox-w32-f5051d07f196a8ff7aeaae762333d5aa2b824088.zip |
ash: allow long-running nofork applets to be interrupted
Nofork applets can't be interrupted with ctrl-c. This isn't an
issue for most such applets because they do very little and won't
run for very long. However 'yes' and 'seq 10000000' can't be
interrupted in a interactive shell, which is awkward.
As a special case ignore the nofork-ness of these applets if they're
run from an interactive shell.
This isn't foolproof as there are still ways to run them such that
they can't be interrupted, but it helps.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 105a0b988..a345a8f35 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1145,6 +1145,9 @@ int run_nofork_applet(int applet_no, char **argv) FAST_FUNC; | |||
1145 | extern int find_applet_by_name(const char *name) FAST_FUNC; | 1145 | extern int find_applet_by_name(const char *name) FAST_FUNC; |
1146 | extern void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC; | 1146 | extern void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC; |
1147 | #endif | 1147 | #endif |
1148 | #if ENABLE_PLATFORM_MINGW32 && ENABLE_FEATURE_SH_NOFORK | ||
1149 | extern int long_running_applet(int applet_no) FAST_FUNC; | ||
1150 | #endif | ||
1148 | 1151 | ||
1149 | /* Helpers for daemonization. | 1152 | /* Helpers for daemonization. |
1150 | * | 1153 | * |