1. 68404f1 *: add -Wunused-parameter; fix resulting breakage by Denis Vlasenko · 16 years ago
  2. 25591c3 libbb: introduce bb_signals and bb_signals_recursive, by Denis Vlasenko · 17 years ago
  3. a985d30 - spelling fixes by Bernhard Reutner-Fischer · 17 years ago
  4. 04e11c9 getpot: add support for "a+" specifier for nonnegative int parameters. by Denis Vlasenko · 17 years ago
  5. 8c69afd - be C99 friendly. Anonymous unions are a GNU extension. This change is by Bernhard Reutner-Fischer · 17 years ago
  6. 56ea65c ps: fix overflow in USER and VSZ columns by Denis Vlasenko · 17 years ago
  7. fcfb5c0 defconfig: update by Denis Vlasenko · 17 years ago
  8. 5576136 fixes revealed by randomconfig run by Denis Vlasenko · 17 years ago
  9. 9b49a5e add -fvisibility=hidden to CC flags, mark XXX_main functions by Denis Vlasenko · 17 years ago
  10. 4daad90 introduce bb_putchar(). saves ~1800 on uclibc (less on glibc). by Denis Vlasenko · 17 years ago
  11. 5d61e71 introduce safe_poll (fixes a problem in top) by Denis Vlasenko · 17 years ago
  12. 4d7605a top: small fix for command line wrapping by Denis Vlasenko · 17 years ago
  13. 4c1d88d top: get rid of on-stack variable buffers, use permanent one. by Denis Vlasenko · 17 years ago
  14. e7c1ad1 top: add sizeof(G) check; fix style by Denis Vlasenko · 17 years ago
  15. ff6e8e2 top: TOPMEM feature - 's(how sizes)' command. +2.5k when enabled, by Denis Vlasenko · 17 years ago
  16. 0524180 top: another readability fix by Denis Vlasenko · 17 years ago
  17. 8bdba4d top: don't wait before final bailout (try top -b -n1). by Denis Vlasenko · 17 years ago
  18. b308d81 top: use poll instead of select for waiting on one descriptor by Denis Vlasenko · 17 years ago
  19. 6ee023c *: compile fixes for 64-bit build by Denis Vlasenko · 17 years ago
  20. fe7cd64 don't pass argc in getopt32, it's superfluous by Denis Vlasenko · 17 years ago
  21. 856be77 assorted fixes for breakage found by randomconfig by Denis Vlasenko · 17 years ago
  22. 110967a top: nested function allows us to reuse some code by Denis Vlasenko · 17 years ago
  23. 24c5fba top: make "100%" case less ugly, and shrink code while at it by Denis Vlasenko · 17 years ago
  24. c1166c3 top: simpler loadavg processing by Denis Vlasenko · 17 years ago
  25. 9109fbe top: truncate usernames to 8 chars by Denis Vlasenko · 17 years ago
  26. 98ebab8 top,ps: improve /proc/PID/cmdinfo reading code by Denis Vlasenko · 17 years ago
  27. f7d07b1 killall, pidof: use argv0 for process matching too by Denis Vlasenko · 17 years ago
  28. 7451196 top: on user suggestion make percentile calculations configurable. -56 bytes when off. +600 bytes when on by Denis Vlasenko · 17 years ago
  29. b1e5add top: improve global CPU percentage (smaller & faster code) by Denis Vlasenko · 17 years ago
  30. 5a65447 top: add config option and code for global CPU % display by Denis Vlasenko · 17 years ago
  31. b6adbf1 usage.c: remove reference to busybox.h by Denis Vlasenko · 17 years ago
  32. 8581863 procps: remove all global variables by Denis Vlasenko · 17 years ago
  33. ac678ec style fixes, no code changes by Denis Vlasenko · 17 years ago
  34. 0aa6ba5 make sure ps/top output what they claim: vsz, not rss ... down the line we should make the output controllable either at runtime or buildtime as both statistics are quite useful by Mike Frysinger · 18 years ago
  35. 06af216 suppress warnings about easch <applet>_main() having no preceding prototype by Denis Vlasenko · 18 years ago
  36. f7996f3 Trailing whitespace removal over entire tree by Denis Vlasenko · 18 years ago
  37. 3bba545 done a dozen of randconfig test. guess what? ALL failed... by Denis Vlasenko · 18 years ago
  38. 459e4d6 replace /proc scanning code by more versatile one. by Denis Vlasenko · 18 years ago
  39. fa07680 top: improve CPU% calculation style fixes by Denis Vlasenko · 18 years ago
  40. 35fb512 PID should be stored in pid_t, not int or long. by Denis Vlasenko · 18 years ago
  41. 25d8062 top: batch mode should output all processes by Denis Vlasenko · 18 years ago
  42. ea62077 add open_read_close() and similar stuff by Denis Vlasenko · 18 years ago
  43. 1385899 attempt to regularize atoi mess. by Denis Vlasenko · 18 years ago
  44. c12f530 dnsd fix; option_mask32 added. dnsd needs more love. by Denis Vlasenko · 18 years ago
  45. 67b23e6 getopt_ulflags -> getopt32. by Denis Vlasenko · 18 years ago
  46. 266bc17 top: add support for -b, -n <iterations> by Denis Vlasenko · 18 years ago
  47. 42dfcd2 top: fixed wrong comment, made error message more clear by Denis Vlasenko · 18 years ago
  48. d921b2e Remove bb_ prefixes from xfuncs.c (and a few other places), consolidate by Rob Landley · 18 years ago
  49. a526c30 Make another warning go away. by Rob Landley · 18 years ago
  50. db1ab1a Top was catching sigterm (and fumbling sigint) so it could reset the terminal by Rob Landley · 18 years ago
  51. e15d757 - move #include busybox.h to the very top so we pull in the config by Bernhard Reutner-Fischer · 18 years ago
  52. 299a6b4 Consolidate #include <sys/time.h> so libbb.h does it. by Rob Landley · 18 years ago
  53. e2922e4 - make it C89 compatible; Declarations in the middle of a function is of course by Bernhard Reutner-Fischer · 18 years ago
  54. 0c43046 Fix allbareconfig. by Rob Landley · 18 years ago
  55. 997650b From Denis Vlasenko: by Rob Landley · 18 years ago
  56. d9cf7ac - patch from Denis Vlasenko to add and use bb_xchdir() by Bernhard Reutner-Fischer · 18 years ago
  57. c218a29 add last terminal line by "Vladimir N. Oleynik" · 19 years ago
  58. 3afdfec restore change by Denis Vlasenko: file_to_buf must vary fast, best if inline by "Vladimir N. Oleynik" · 19 years ago
  59. b280455 Cleanups from Denis Vlasenko. by Rob Landley · 19 years ago
  60. 51bfa54 removed warning "comparison between signed and unsigned". Added ATTRIBUTE_UNUSED. My whitespace by "Vladimir N. Oleynik" · 19 years ago
  61. c1ef7bd just whitespace by Tim Riker · 19 years ago
  62. 70678bc getopt -> getopt_ulflags. noticed by Rob Sullivan by "Vladimir N. Oleynik" · 19 years ago
  63. f246dc7 ENABLE_FEATURE_TOP_CPU_USAGE_PERCENTAGE->CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE by "Vladimir N. Oleynik" · 19 years ago
  64. 1e07f85 FEATURE->ENABLE_FEATURE loses one for 'top' applet by "Vladimir N. Oleynik" · 19 years ago
  65. 038b076 some portability fixes by rmh in Bug 395 by Mike Frysinger · 19 years ago
  66. 223b887 touchup syntax by Mike Frysinger · 19 years ago
  67. 60158cb A patch from Takeharu KATO to update/fix SE-Linux support. by Rob Landley · 19 years ago
  68. 14f5c8d Patch from Bernhard Fischer to make a bunch of symbols static by Eric Andersen · 19 years ago
  69. b6570d0 remove a cut/paste mistake, i better get some sleep. by Glenn L McGrath · 20 years ago
  70. 225be8c Apply patch from Felipe Kellermann to simlify logic of sort functions. by Glenn L McGrath · 20 years ago
  71. aff114c Larry Doolittle writes: by Eric Andersen · 20 years ago
  72. c7bda1c Remove trailing whitespace. Update copyright to include 2004. by Eric Andersen · 20 years ago
  73. f6bba3d Splitting statements with #define's can cause trouble for cross by Glenn L McGrath · 21 years ago
  74. 7857c03 Paul Mundt (lethal) writes: by Eric Andersen · 21 years ago
  75. 8efe967 Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize) by Eric Andersen · 21 years ago
  76. 9e48045 Patch from Russell Coker: by Eric Andersen · 21 years ago
  77. cad5364 Major coreutils update. by Manuel Novoa III · 21 years ago
  78. 44608e9 Patch last_pach62 from vodz. This patch moves all the /proc parsing by Eric Andersen · 22 years ago
  79. 08a7220 last_patch58 from vodz: by Eric Andersen · 22 years ago
  80. 3a1d837 don't leak FILEs by Eric Andersen · 22 years ago
  81. d499330 Commit vodz's patch, plus a tweak to change TracePid to TracerPid. Now by Manuel Novoa III · 22 years ago
  82. 420b208 Add a new top applet -Erik by Eric Andersen · 22 years ago