Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | *: add -Wunused-parameter; fix resulting breakage | Denis Vlasenko | 2008-03-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | function old new delta procps_scan 1265 1298 +33 aliascmd 278 283 +5 parse_file_cmd 116 120 +4 dname_enc 373 377 +4 setcmd 90 93 +3 execcmd 57 60 +3 count_lines 72 74 +2 process_command_subs 340 339 -1 test_main 409 407 -2 mknod_main 179 177 -2 handle_incoming_and_exit 2653 2651 -2 argstr 1312 1310 -2 shiftcmd 131 128 -3 exitcmd 46 43 -3 dotcmd 297 294 -3 breakcmd 86 83 -3 evalpipe 353 349 -4 evalcommand 1180 1176 -4 evalcmd 109 105 -4 send_tree 374 369 -5 mkfifo_main 82 77 -5 evalsubshell 152 147 -5 typecmd 75 69 -6 letcmd 61 55 -6 add_cmd 1190 1183 -7 main 891 883 -8 ash_main 1415 1407 -8 parse_stream 1377 1367 -10 alloc_procps_scan 55 - -55 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 7/21 up/down: 54/-148) Total: -94 bytes text data bss dec hex filename 797195 658 7428 805281 c49a1 busybox_old 797101 658 7428 805187 c4943 busybox_unstripped | ||||
* | which: fix testsuite failure | Denis Vlasenko | 2007-11-25 | 1 | -4/+6 |
| | | | | | | pidof: do not output empty line if nothing found testsuite: disable false positive | ||||
* | add -fvisibility=hidden to CC flags, mark XXX_main functions | Denis Vlasenko | 2007-10-11 | 1 | -1/+1 |
| | | | | | EXTERNALLY_VISIBLE. 5% size reduction of libbusybox.so | ||||
* | introduce bb_putchar(). saves ~1800 on uclibc (less on glibc). | Denis Vlasenko | 2007-09-27 | 1 | -1/+1 |
| | |||||
* | don't pass argc in getopt32, it's superfluous | Denis Vlasenko | 2007-08-18 | 1 | -1/+1 |
| | | | | | | | | (add/remove: 0/0 grow/shrink: 12/131 up/down: 91/-727) Total: -636 bytes text data bss dec hex filename 773469 1058 11092 785619 bfcd3 busybox_old 772644 1058 11092 784794 bf99a busybox_unstripped | ||||
* | pidof: size optimizations (-50 bytes) | Denis Vlasenko | 2007-06-23 | 1 | -19/+14 |
| | |||||
* | usage.c: remove reference to busybox.h | Denis Vlasenko | 2007-05-26 | 1 | -1/+1 |
| | | | | | *: s/include "busybox.h"/include "libbb.h" | ||||
* | suppress warnings about easch <applet>_main() having | Denis Vlasenko | 2007-02-03 | 1 | -0/+1 |
| | | | | no preceding prototype | ||||
* | pidof: reduce #ifdef forest | Denis Vlasenko | 2006-11-01 | 1 | -39/+19 |
| | |||||
* | PID should be stored in pid_t, not int or long. | Denis Vlasenko | 2006-11-01 | 1 | -17/+19 |
| | | | | | find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead. | ||||
* | attempt to regularize atoi mess. | Denis Vlasenko | 2006-10-08 | 1 | -5/+5 |
| | |||||
* | getopt_ulflags -> getopt32. | Denis Vlasenko | 2006-10-03 | 1 | -2/+2 |
| | | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit. | ||||
* | Change license statements (and clean up headers) on some of the files that | Rob Landley | 2006-09-22 | 1 | -10/+1 |
| | | | | Erik or I are primary copyright holders on. | ||||
* | - fix copy'n paste errors that got introduced when switching to the shorter ↵ | Bernhard Reutner-Fischer | 2006-09-13 | 1 | -1/+1 |
| | | | | | | boilerplate. No object code changes. | ||||
* | - move #include busybox.h to the very top so we pull in the config | Bernhard Reutner-Fischer | 2006-06-02 | 1 | -2/+1 |
| | | | | and eventual platform specific includes in early. | ||||
* | Change llist_add_* to take the address of the list rather than returning the new | Rob Landley | 2006-05-26 | 1 | -6/+1 |
| | | | | head, and change all the callers. | ||||
* | Fiddling with llist to make memory management easier. Specifically, the | Rob Landley | 2006-05-08 | 1 | -2/+2 |
| | | | | | option to delete the contents of the list when we delete the list is a good thing. | ||||
* | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | 2006-03-06 | 1 | -1/+1 |
| | | | | definitions. (That should only be on prototypes.) | ||||
* | RESERVE_CONFIG_BUFFER --> bb_common_bufsiz1 | "Vladimir N. Oleynik" | 2005-10-15 | 1 | -3/+1 |
| | |||||
* | - new bb_opt_complementally syntax, use [-:?] only - 'free' chars | "Vladimir N. Oleynik" | 2005-10-14 | 1 | -1/+1 |
| | | | | | - new bb_getopt_ulflags features: check max and min args, convert first argv to options special for ar and tar applets - use bb_default_error_retval for env applet | ||||
* | - size reduction of pidof | Bernhard Reutner-Fischer | 2005-10-07 | 1 | -42/+30 |
| | | | | - fix typo in reverse_pidlist | ||||
* | - pidof(8): make -s optional and optional -o; closes #168 | Bernhard Reutner-Fischer | 2005-10-06 | 1 | -30/+96 |
| | | | | first cut. | ||||
* | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | 2004-03-15 | 1 | -1/+1 |
| | |||||
* | Update a bunch of docs. Run a script to update my email addr. | Eric Andersen | 2003-07-14 | 1 | -2/+1 |
| | |||||
* | Major coreutils update. | Manuel Novoa III | 2003-03-19 | 1 | -1/+1 |
| | |||||
* | last_patch_67 from Vladimir N. Oleynik | Glenn L McGrath | 2002-11-25 | 1 | -3/+4 |
| | |||||
* | Patch last_pach62 from vodz. This patch moves all the /proc parsing | Eric Andersen | 2002-10-22 | 1 | -9/+4 |
| | | | | code into libbb so it can be shared by ps, top, etc, saving over 1.5k. | ||||
* | Made exit code SysV compliant. Also added -s (single pid) flag. | Robert Griebl | 2002-05-22 | 1 | -12/+9 |
| | |||||
* | Patch from Jim Treadway <jim@stardot-tech.com> to teach | Eric Andersen | 2002-04-13 | 1 | -3/+3 |
| | | | | pidof to not add trailing spaces when not needed. | ||||
* | If find_pid_by_name() had an error, it was returning -1, but storing | Eric Andersen | 2001-12-06 | 1 | -1/+1 |
| | | | | | | | | that into a pid_t, which is unsigned on a number archs. Furthermore, find_pid_by_name() would _never_ return an error if the intended proces was "init", but instead would return 1, meaning we would fail to work on 2.4.x kernels running an initrd... -Erik | ||||
* | Major rework of the directory structure and the entire build system. | Eric Andersen | 2001-10-24 | 1 | -2/+2 |
| | | | | -Erik | ||||
* | I just wrote up a simple pidof applet, closing bug #1197 | Eric Andersen | 2001-07-31 | 1 | -0/+79 |
-Erik |