diff options
Diffstat (limited to 'procps/pmap.c')
-rw-r--r-- | procps/pmap.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/procps/pmap.c b/procps/pmap.c index 7f7f391b9..fd995a54d 100644 --- a/procps/pmap.c +++ b/procps/pmap.c | |||
@@ -8,22 +8,22 @@ | |||
8 | * for details. | 8 | * for details. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | //applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP)) | ||
12 | //kbuild:lib-$(CONFIG_PMAP) += pmap.o | ||
13 | |||
14 | //config:config PMAP | 11 | //config:config PMAP |
15 | //config: bool "pmap" | 12 | //config: bool "pmap" |
16 | //config: default y | 13 | //config: default y |
17 | //config: help | 14 | //config: help |
18 | //config: Display processes' memory mappings. | 15 | //config: Display processes' memory mappings. |
19 | 16 | ||
17 | //applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP)) | ||
18 | //kbuild:lib-$(CONFIG_PMAP) += pmap.o | ||
19 | |||
20 | //usage:#define pmap_trivial_usage | 20 | //usage:#define pmap_trivial_usage |
21 | //usage: "[-x][-q] PID" | 21 | //usage: "[-xq] PID" |
22 | //usage:#define pmap_full_usage "\n\n" | 22 | //usage:#define pmap_full_usage "\n\n" |
23 | //usage: "Display detailed precesses' memory usage\n" | 23 | //usage: "Display detailed process memory usage" |
24 | //usage: "\nOptions:" | 24 | //usage: "\n" |
25 | //usage: "\n -x show details" | 25 | //usage: "\n -x Show details" |
26 | //usage: "\n -q quiet" | 26 | //usage: "\n -q Quiet" |
27 | 27 | ||
28 | #include "libbb.h" | 28 | #include "libbb.h" |
29 | 29 | ||