diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-07 18:45:33 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-07 18:45:33 +0200 |
commit | f2cf1cc716216308a8a6d07e3afab23be07a6b02 (patch) | |
tree | 81c2a8231d59e39ab1f3cecf219616f0104fea80 /include | |
parent | 248a67fb75a0d2c98f4f9935b7bb9e11382b2c78 (diff) | |
download | busybox-w32-f2cf1cc716216308a8a6d07e3afab23be07a6b02.tar.gz busybox-w32-f2cf1cc716216308a8a6d07e3afab23be07a6b02.tar.bz2 busybox-w32-f2cf1cc716216308a8a6d07e3afab23be07a6b02.zip |
noexec: set comm field for noexecs
function old new delta
set_task_comm - 18 +18
tryexec 152 159 +7
pseudo_exec_argv 321 328 +7
main 106 97 -9
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 3/2 up/down: 34/-13) Total: 23 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 51e8f27a5..e4a19ac04 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1116,6 +1116,11 @@ int run_nofork_applet(int applet_no, char **argv) FAST_FUNC; | |||
1116 | extern int find_applet_by_name(const char *name) FAST_FUNC; | 1116 | extern int find_applet_by_name(const char *name) FAST_FUNC; |
1117 | extern void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC; | 1117 | extern void run_applet_no_and_exit(int a, const char *name, char **argv) NORETURN FAST_FUNC; |
1118 | #endif | 1118 | #endif |
1119 | #if defined(__linux__) | ||
1120 | void set_task_comm(const char *comm) FAST_FUNC; | ||
1121 | #else | ||
1122 | # define set_task_comm(name) ((void)0) | ||
1123 | #endif | ||
1119 | 1124 | ||
1120 | /* Helpers for daemonization. | 1125 | /* Helpers for daemonization. |
1121 | * | 1126 | * |