diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-26 11:57:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-26 11:57:01 +0000 |
commit | a76f10b544b4ffe4b0aaf41eede1aeb9b13a95e8 (patch) | |
tree | a41295eaee4b3f28a6e20df4e592ffacc42ac4ab /include | |
parent | 15c0b725849875c718b168a26e13872e163cde4c (diff) | |
download | busybox-w32-a76f10b544b4ffe4b0aaf41eede1aeb9b13a95e8.tar.gz busybox-w32-a76f10b544b4ffe4b0aaf41eede1aeb9b13a95e8.tar.bz2 busybox-w32-a76f10b544b4ffe4b0aaf41eede1aeb9b13a95e8.zip |
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 9e0399eee..08fed90a7 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1275,7 +1275,13 @@ enum { | |||
1275 | PSSCAN_UTIME = 1 << 13, | 1275 | PSSCAN_UTIME = 1 << 13, |
1276 | PSSCAN_TTY = 1 << 14, | 1276 | PSSCAN_TTY = 1 << 14, |
1277 | PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM, | 1277 | PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM, |
1278 | PSSCAN_ARGVN = (1 << 16) * (ENABLE_PGREP || ENABLE_PKILL || ENABLE_PIDOF), | 1278 | /* NB: used by find_pid_by_name(). Any applet using it |
1279 | * needs to be mentioned here. */ | ||
1280 | PSSCAN_ARGVN = (1 << 16) * (ENABLE_KILLALL | ||
1281 | || ENABLE_PGREP || ENABLE_PKILL | ||
1282 | || ENABLE_PIDOF | ||
1283 | || ENABLE_SESTATUS | ||
1284 | ), | ||
1279 | USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,) | 1285 | USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,) |
1280 | PSSCAN_START_TIME = 1 << 18, | 1286 | PSSCAN_START_TIME = 1 << 18, |
1281 | PSSCAN_CPU = 1 << 19, | 1287 | PSSCAN_CPU = 1 << 19, |