diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-16 02:49:21 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-16 02:49:21 +0200 |
commit | c9b9750a0e2a85d3d045cc8d0217d4605f2d7989 (patch) | |
tree | 00168254b5f9e960ce42ea36d6d4a78bd269eae4 /include | |
parent | a4160e15ec866005f3ad30c967bc4829fbb1c8e3 (diff) | |
download | busybox-w32-c9b9750a0e2a85d3d045cc8d0217d4605f2d7989.tar.gz busybox-w32-c9b9750a0e2a85d3d045cc8d0217d4605f2d7989.tar.bz2 busybox-w32-c9b9750a0e2a85d3d045cc8d0217d4605f2d7989.zip |
libbb: factor out common code from mpstat/iostat
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 03fc5d44b..21e144144 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1479,6 +1479,8 @@ procps_status_t* procps_scan(procps_status_t* sp, int flags) FAST_FUNC; | |||
1479 | void read_cmdline(char *buf, int size, unsigned pid, const char *comm) FAST_FUNC; | 1479 | void read_cmdline(char *buf, int size, unsigned pid, const char *comm) FAST_FUNC; |
1480 | pid_t *find_pid_by_name(const char* procName) FAST_FUNC; | 1480 | pid_t *find_pid_by_name(const char* procName) FAST_FUNC; |
1481 | pid_t *pidlist_reverse(pid_t *pidList) FAST_FUNC; | 1481 | pid_t *pidlist_reverse(pid_t *pidList) FAST_FUNC; |
1482 | int starts_with_cpu(const char *str) FAST_FUNC; | ||
1483 | unsigned get_cpu_count(void) FAST_FUNC; | ||
1482 | 1484 | ||
1483 | 1485 | ||
1484 | extern const char bb_uuenc_tbl_base64[]; | 1486 | extern const char bb_uuenc_tbl_base64[]; |