Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-01 | pidof: reduce #ifdef forest | Denis Vlasenko | |
2006-11-01 | PID should be stored in pid_t, not int or long. | Denis Vlasenko | |
find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead. | |||
2006-10-08 | attempt to regularize atoi mess. | Denis Vlasenko | |
2006-10-03 | getopt_ulflags -> getopt32. | Denis Vlasenko | |
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. | |||
2006-09-22 | Change license statements (and clean up headers) on some of the files that | Rob Landley | |
Erik or I are primary copyright holders on. | |||
2006-09-13 | - fix copy'n paste errors that got introduced when switching to the shorter ↵ | Bernhard Reutner-Fischer | |
boilerplate. No object code changes. | |||
2006-06-02 | - move #include busybox.h to the very top so we pull in the config | Bernhard Reutner-Fischer | |
and eventual platform specific includes in early. | |||
2006-05-26 | Change llist_add_* to take the address of the list rather than returning the new | Rob Landley | |
head, and change all the callers. | |||
2006-05-08 | Fiddling with llist to make memory management easier. Specifically, the | Rob Landley | |
option to delete the contents of the list when we delete the list is a good thing. | |||
2006-03-06 | Robert P. Day removed 8 gazillion occurrences of "extern" on function | Rob Landley | |
definitions. (That should only be on prototypes.) | |||
2005-10-15 | RESERVE_CONFIG_BUFFER --> bb_common_bufsiz1 | "Vladimir N. Oleynik" | |
2005-10-14 | - new bb_opt_complementally syntax, use [-:?] only - 'free' chars | "Vladimir N. Oleynik" | |
- 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 | |||
2005-10-07 | - size reduction of pidof | Bernhard Reutner-Fischer | |
- fix typo in reverse_pidlist | |||
2005-10-06 | - pidof(8): make -s optional and optional -o; closes #168 | Bernhard Reutner-Fischer | |
first cut. | |||
2004-03-15 | Remove trailing whitespace. Update copyright to include 2004. | Eric Andersen | |
2003-07-14 | Update a bunch of docs. Run a script to update my email addr. | Eric Andersen | |
2003-03-19 | Major coreutils update. | Manuel Novoa III | |
2002-11-25 | last_patch_67 from Vladimir N. Oleynik | Glenn L McGrath | |
2002-10-22 | Patch last_pach62 from vodz. This patch moves all the /proc parsing | Eric Andersen | |
code into libbb so it can be shared by ps, top, etc, saving over 1.5k. | |||
2002-05-22 | Made exit code SysV compliant. Also added -s (single pid) flag. | Robert Griebl | |
2002-04-13 | Patch from Jim Treadway <jim@stardot-tech.com> to teach | Eric Andersen | |
pidof to not add trailing spaces when not needed. | |||
2001-12-06 | If find_pid_by_name() had an error, it was returning -1, but storing | Eric Andersen | |
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 | |||
2001-10-24 | Major rework of the directory structure and the entire build system. | Eric Andersen | |
-Erik | |||
2001-07-31 | I just wrote up a simple pidof applet, closing bug #1197 | Eric Andersen | |
-Erik |