Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-04-16 | style fixes, no code changes | Denis Vlasenko | |
2007-04-12 | style fixes. No code changes | Denis Vlasenko | |
2007-04-11 | bb_full_fd_action: remove potential xmalloc from NOFORK path | Denis Vlasenko | |
cat: stop using stdio.h opens libbb: introduce & use open[3]_or_warn function old new delta open3_or_warn - 54 +54 bb_cat 115 144 +29 open_or_warn - 25 +25 unlzma 2404 2412 +8 chattr_main 334 339 +5 xstrtoul_range_sfx 251 255 +4 telnet_main 1514 1510 -4 static.opt 4 - -4 qgravechar 122 118 -4 fuser_add_pid 61 54 -7 fuser_add_inode 154 147 -7 writeFileToTarball 1542 1534 -8 refresh 1156 1148 -8 do_show 856 846 -10 read_leases 212 200 -12 setup_redirects 236 222 -14 iproute_list_or_flush 1582 1568 -14 read_config 427 411 -16 write_leases 284 264 -20 hash_file 338 318 -20 copy_file 1760 1740 -20 do_iproute 2610 2588 -22 bb_full_fd_action 320 269 -51 open_to_or_warn 103 49 -54 fuser_main 1660 1596 -64 .rodata 131160 131096 -64 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 4/19 up/down: 125/-423) Total: -298 bytes | |||
2007-04-08 | getopt32: fix llist_t options ordering. llist_rev is not unused. | Denis Vlasenko | |
function old new delta tar_main 705 695 -10 sort_main 928 918 -10 decode_format_string 886 876 -10 run_parts_main 197 185 -12 ps_main 513 500 -13 wget_main 2764 2750 -14 awk_main 1014 1000 -14 od_main 2886 2866 -20 llist_rev 25 - -25 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 0/8 up/down: 0/-128) Total: -128 bytes | |||
2007-03-28 | ps: work around libc bug: printf("%.*s\n", MAX_INT, buffer) | Denis Vlasenko | |
2007-03-24 | random style fixes (extra spaces deleted) | Denis Vlasenko | |
2007-03-14 | - change option -c to -Z to match newer upstream SElinux conventions | Bernhard Reutner-Fischer | |
2007-02-17 | sort: fix multiple -k (was ignoring all except last) | Denis Vlasenko | |
2007-02-08 | make sure ps/top output what they claim: vsz, not rss ... down the line we ↵ | Mike Frysinger | |
should make the output controllable either at runtime or buildtime as both statistics are quite useful | |||
2007-02-03 | suppress warnings about easch <applet>_main() having | Denis Vlasenko | |
no preceding prototype | |||
2007-01-22 | fix warning from needlessly-global functions | Denis Vlasenko | |
2007-01-13 | whitespace fixes (leading spaces to tab) | Denis Vlasenko | |
2007-01-11 | Trailing whitespace removal over entire tree | Denis Vlasenko | |
2006-12-30 | done a dozen of randconfig test. guess what? ALL failed... | Denis Vlasenko | |
these are resulting fixes | |||
2006-12-26 | style fixes | Denis Vlasenko | |
last xcalloc replaced by xzalloc | |||
2006-12-23 | fix recognitions of -SIGname signals | Denis Vlasenko | |
(fix by Jacques LUDER <jacques.luder@thalesgroup.com>) | |||
2006-12-18 | ps: fix buglet, add microoptimization | Denis Vlasenko | |
2006-11-27 | safe_strtoXX interface proved to be a bit unconvenient. | Denis Vlasenko | |
Remove it, introduce saner bb_strtoXX. Saved ~350 bytes. | |||
2006-11-18 | rodata cleanup. "unable to" == "cannot". -300 bytes | Denis Vlasenko | |
2006-11-17 | add -Wundef, fix uncovered bugs | Denis Vlasenko | |
2006-11-05 | ps: add documentation on POSIX ps | Denis Vlasenko | |
2006-11-05 | ps: implement POSIX-like options, most notably -o | Denis Vlasenko | |
(activated by CONFIG_DESKTOP) | |||
2006-11-05 | replace /proc scanning code by more versatile one. | Denis Vlasenko | |
Use it where appropriate. Stop scanning /etc/passwd *for every process*!!! (uid->username) top: reduce memory usage - we won't save unneeded fields from /proc info anymore. Downside: ~+250 bytes of code | |||
2006-11-05 | top: improve CPU% calculation | Denis Vlasenko | |
style fixes | |||
2006-11-01 | Unneeded code removed, usused field "unsigned pscpu" removed | Denis Vlasenko | |
2006-11-01 | mostly style fixes | Denis Vlasenko | |
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-11-01 | ps: reduce #ifdef forest | Denis Vlasenko | |
2006-10-27 | top: batch mode should output all processes | Denis Vlasenko | |
2006-10-27 | get_terminal_width_height: do not pass insanely large values | Denis Vlasenko | |
2006-10-26 | silly size savings and capitalization fixes | Denis Vlasenko | |
2006-10-14 | add open_read_close() and similar stuff | Denis Vlasenko | |
2006-10-08 | start_stop_daemon: add -N <nice> compat | Denis Vlasenko | |
[re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code | |||
2006-10-08 | attempt to regularize atoi mess. | Denis Vlasenko | |
2006-10-06 | dnsd fix; option_mask32 added. dnsd needs more love. | Denis Vlasenko | |
2006-10-05 | build system overhaul | Denis Vlasenko | |
2006-10-03 | bb_applet_name -> applet_name | 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-29 | top: add support for -b, -n <iterations> | Denis Vlasenko | |
2006-09-27 | kill: implement killall5. OpenWRT folks will be happy. | Denis Vlasenko | |
However their code was unusably different from sysvinit original. Run tested. | |||
2006-09-27 | kill: fix bugs (kill -l output was horrible), fix style, constify data | Denis Vlasenko | |
2006-09-27 | process utilities related style cleanup | Denis Vlasenko | |
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-09-12 | Random cleanup hanging around my tree. | Rob Landley | |
2006-09-09 | top: fixed wrong comment, made error message more clear | Denis Vlasenko | |
2006-09-09 | using [xa]sprintf for string concatenation is neat and saves | Denis Vlasenko | |
~100 bytes according to bloatcheck. Also this fixes bug in rpm | |||
2006-08-03 | These should have been part of 15767 too. | Rob Landley | |
2006-08-03 | Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate | Rob Landley | |
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.) |