diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-16 12:55:29 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-16 12:55:29 +0000 |
commit | f246dc7f57335b01e5e503d14eb4ef0eb28d2f94 (patch) | |
tree | 1087a44db7d46fd29cc247e7071d7077e2958b5c /libbb | |
parent | c350485b18b95954496e12161a87ee016f2bbb81 (diff) | |
download | busybox-w32-f246dc7f57335b01e5e503d14eb4ef0eb28d2f94.tar.gz busybox-w32-f246dc7f57335b01e5e503d14eb4ef0eb28d2f94.tar.bz2 busybox-w32-f246dc7f57335b01e5e503d14eb4ef0eb28d2f94.zip |
ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE->CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/procps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/procps.c b/libbb/procps.c index 2f675a544..1e9d6869b 100644 --- a/libbb/procps.c +++ b/libbb/procps.c | |||
@@ -72,7 +72,7 @@ extern procps_status_t * procps_scan(int save_user_arg0) | |||
72 | "%c %d " | 72 | "%c %d " |
73 | "%*s %*s %*s %*s " /* pgrp, session, tty, tpgid */ | 73 | "%*s %*s %*s %*s " /* pgrp, session, tty, tpgid */ |
74 | "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */ | 74 | "%*s %*s %*s %*s %*s " /* flags, min_flt, cmin_flt, maj_flt, cmaj_flt */ |
75 | #ifdef ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE | 75 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
76 | "%lu %lu " | 76 | "%lu %lu " |
77 | #else | 77 | #else |
78 | "%*s %*s " | 78 | "%*s %*s " |
@@ -83,12 +83,12 @@ extern procps_status_t * procps_scan(int save_user_arg0) | |||
83 | "%*s " /* vsize */ | 83 | "%*s " /* vsize */ |
84 | "%ld", | 84 | "%ld", |
85 | curstatus.state, &curstatus.ppid, | 85 | curstatus.state, &curstatus.ppid, |
86 | #ifdef ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE | 86 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
87 | &curstatus.utime, &curstatus.stime, | 87 | &curstatus.utime, &curstatus.stime, |
88 | #endif | 88 | #endif |
89 | &tasknice, | 89 | &tasknice, |
90 | &curstatus.rss); | 90 | &curstatus.rss); |
91 | #ifdef ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE | 91 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
92 | if(n != 6) | 92 | if(n != 6) |
93 | #else | 93 | #else |
94 | if(n != 4) | 94 | if(n != 4) |