diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index a6709c95d..34b978452 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -787,6 +787,7 @@ int bb_make_directory(char *path, long mode, int flags); | |||
787 | 787 | ||
788 | int get_signum(const char *name); | 788 | int get_signum(const char *name); |
789 | const char *get_signame(int number); | 789 | const char *get_signame(int number); |
790 | void print_signames_and_exit(void) ATTRIBUTE_NORETURN; | ||
790 | 791 | ||
791 | char *bb_simplify_path(const char *path); | 792 | char *bb_simplify_path(const char *path); |
792 | 793 | ||
@@ -973,7 +974,8 @@ enum { | |||
973 | PSSCAN_UTIME = 1 << 13, | 974 | PSSCAN_UTIME = 1 << 13, |
974 | PSSCAN_TTY = 1 << 14, | 975 | PSSCAN_TTY = 1 << 14, |
975 | PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM, | 976 | PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM, |
976 | USE_SELINUX(PSSCAN_CONTEXT = 1 << 16,) | 977 | PSSCAN_ARGVN = (1 << 16) * (ENABLE_PGREP | ENABLE_PKILL), |
978 | USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,) | ||
977 | /* These are all retrieved from proc/NN/stat in one go: */ | 979 | /* These are all retrieved from proc/NN/stat in one go: */ |
978 | PSSCAN_STAT = PSSCAN_PPID | PSSCAN_PGID | PSSCAN_SID | 980 | PSSCAN_STAT = PSSCAN_PPID | PSSCAN_PGID | PSSCAN_SID |
979 | | PSSCAN_COMM | PSSCAN_STATE | 981 | | PSSCAN_COMM | PSSCAN_STATE |