diff options
author | Rob Landley <rob@landley.net> | 2012-02-18 15:12:41 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-02-18 15:12:41 -0600 |
commit | ff9ee8fc15e1a41bffe06bfcee30368e7c117601 (patch) | |
tree | 4806b88fe328eb96c4a9f7df41dd5c8859a56117 /lib/lib.h | |
parent | 3c1104ff57f22495a7711eabb4c0d3b5cda4a982 (diff) | |
download | toybox-ff9ee8fc15e1a41bffe06bfcee30368e7c117601.tar.gz |
Add killall by Andreas Heck, and factor out common pid code to lib.h.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -110,6 +110,8 @@ void replace_tempfile(int fdin, int fdout, char **tempname); void crc_init(unsigned int *crc_table, int little_endian); void terminal_size(unsigned *x, unsigned *y); int yesno(int def); +int for_each_pid_with_name_in(char **names, + void (*callback) (const char *pid)); // getmountlist.c |