diff options
author | Ron Yorston <rmy@pobox.com> | 2017-08-22 15:30:29 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-08-22 15:30:29 +0100 |
commit | 594aac64fb94168c5345dd53a1e0231ed7c78418 (patch) | |
tree | 287fb5c9e57efdb40056c0ef234d5d870dde5103 /include | |
parent | bcacae6da4e772f208ef2026fae5faaac9048411 (diff) | |
download | busybox-w32-594aac64fb94168c5345dd53a1e0231ed7c78418.tar.gz busybox-w32-594aac64fb94168c5345dd53a1e0231ed7c78418.tar.bz2 busybox-w32-594aac64fb94168c5345dd53a1e0231ed7c78418.zip |
Revert "ash: allow long-running nofork applets to be interrupted"
This reverts commit f5051d07f196a8ff7aeaae762333d5aa2b824088.
Upstream made 'yes' and 'seq' NOEXEC rather than NOFORK which also solves
the problem, though NOEXEC doesn't provide any gain in busybox-w32.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6073cbf4a..c95f43954 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1150,9 +1150,6 @@ void set_task_comm(const char *comm) FAST_FUNC; | |||
1150 | #else | 1150 | #else |
1151 | # define set_task_comm(name) ((void)0) | 1151 | # define set_task_comm(name) ((void)0) |
1152 | #endif | 1152 | #endif |
1153 | #if ENABLE_PLATFORM_MINGW32 && ENABLE_FEATURE_SH_NOFORK | ||
1154 | extern int long_running_applet(int applet_no) FAST_FUNC; | ||
1155 | #endif | ||
1156 | 1153 | ||
1157 | /* Helpers for daemonization. | 1154 | /* Helpers for daemonization. |
1158 | * | 1155 | * |