aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index c7b4de13c..51ac69ed5 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1280,6 +1280,7 @@ typedef struct procps_status_t {
1280/* Fields are set to 0/NULL if failed to determine (or not requested) */ 1280/* Fields are set to 0/NULL if failed to determine (or not requested) */
1281 uint16_t argv_len; 1281 uint16_t argv_len;
1282 char *argv0; 1282 char *argv0;
1283 char *exe;
1283 IF_SELINUX(char *context;) 1284 IF_SELINUX(char *context;)
1284 /* Everything below must contain no ptrs to malloc'ed data: 1285 /* Everything below must contain no ptrs to malloc'ed data:
1285 * it is memset(0) for each process in procps_scan() */ 1286 * it is memset(0) for each process in procps_scan() */
@@ -1327,7 +1328,7 @@ enum {
1327 PSSCAN_COMM = 1 << 5, 1328 PSSCAN_COMM = 1 << 5,
1328 /* PSSCAN_CMD = 1 << 6, - use read_cmdline instead */ 1329 /* PSSCAN_CMD = 1 << 6, - use read_cmdline instead */
1329 PSSCAN_ARGV0 = 1 << 7, 1330 PSSCAN_ARGV0 = 1 << 7,
1330 /* PSSCAN_EXE = 1 << 8, - not implemented */ 1331 PSSCAN_EXE = 1 << 8,
1331 PSSCAN_STATE = 1 << 9, 1332 PSSCAN_STATE = 1 << 9,
1332 PSSCAN_VSZ = 1 << 10, 1333 PSSCAN_VSZ = 1 << 10,
1333 PSSCAN_RSS = 1 << 11, 1334 PSSCAN_RSS = 1 << 11,