diff options
author | Denis Vlasenko | 2009-02-26 11:57:01 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-02-26 11:57:01 +0000 |
commit | a76f10b544b4ffe4b0aaf41eede1aeb9b13a95e8 (patch) | |
tree | a41295eaee4b3f28a6e20df4e592ffacc42ac4ab /include | |
parent | 15c0b725849875c718b168a26e13872e163cde4c (diff) | |
download | busybox-a76f10b544b4ffe4b0aaf41eede1aeb9b13a95e8.zip busybox-a76f10b544b4ffe4b0aaf41eede1aeb9b13a95e8.tar.gz |
Apply post-1.13.2 fixes, bump version to 1.13.3
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 9e0399e..08fed90 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1275,7 +1275,13 @@ enum { PSSCAN_UTIME = 1 << 13, PSSCAN_TTY = 1 << 14, PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM, - PSSCAN_ARGVN = (1 << 16) * (ENABLE_PGREP || ENABLE_PKILL || ENABLE_PIDOF), + /* NB: used by find_pid_by_name(). Any applet using it + * needs to be mentioned here. */ + PSSCAN_ARGVN = (1 << 16) * (ENABLE_KILLALL + || ENABLE_PGREP || ENABLE_PKILL + || ENABLE_PIDOF + || ENABLE_SESTATUS + ), USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,) PSSCAN_START_TIME = 1 << 18, PSSCAN_CPU = 1 << 19, |