aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h8
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,