aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* make xfunctions optionally longjump instead of exit.Denis Vlasenko2007-04-091-0/+1
| | | | | use it for making NOFORK more practical. touch: make it a NOFORK applet
* factor out NOFORK/NOEXEC code from find. Use it for xargs too.Denis Vlasenko2007-04-091-15/+20
|
* Improve STANDALONE_SHELL. "safe" applets are renamed NOEXEC appletsDenis Vlasenko2007-04-091-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | and now this fact is recorded in applets.h, not ash.c. Several fixes to "--help + STANDALONE_SHELL" scenarios. function old new delta run_current_applet_and_exit - 355 +355 arith 2064 2073 +9 refresh 1148 1156 +8 getopt32 1068 1073 +5 telnet_main 1510 1514 +4 md5_sha1_sum_main 565 566 +1 xstrtoul_range_sfx 255 251 -4 packed_usage 22523 22514 -9 tryexec 255 203 -52 static.safe_applets 152 - -152 .rodata 131320 131128 -192 run_applet_by_name 869 506 -363 ------------------------------------------------------------------------------ (add/remove: 1/1 grow/shrink: 5/5 up/down: 382/-772) Total: -390 bytes ./busybox ash -c 'i=20000; while test $i != 0; do touch z; i=$((i-1)); done' runs more than twice as fast with STANDALONE_SHELL versus without.
* merge busybox.c into applets.cDenis Vlasenko2007-04-091-0/+1
|
* getopt32: fix llist_t options ordering. llist_rev is not unused.Denis Vlasenko2007-04-081-32/+37
| | | | | | | | | | | | | | | | 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
* find: fix handling of -pruneDenis Vlasenko2007-04-081-12/+14
| | | | recursive_actions: uppercase flag constants
* random small shrinkage and elimination of staticsDenis Vlasenko2007-04-071-1/+1
|
* [u]mount: extend -t option (Roy Marples <uberlord@gentoo.org>)Denis Vlasenko2007-04-051-0/+2
|
* libbb: add xunlink()Denis Vlasenko2007-04-051-8/+9
| | | | patch: do not try to delete same file twice
* nc: port nc 1.10 to busyboxDenis Vlasenko2007-04-051-0/+10
|
* udpsvd: more work on it. works in limited testing.Denis Vlasenko2007-04-031-0/+11
|
* test: comment out unused codeDenis Vlasenko2007-04-021-3/+4
| | | | | udpsvd: fake it compile tcpsvd: more optimal memorizing of IP's for -C
* tcpsvd: new appletDenis Vlasenko2007-04-011-1/+20
| | | | | | | | | | It's a GPL-ed 'clone' of Dan Bernstein's tcpserver. Author: Gerrit Pape <pape@smarden.org> http://smarden.sunsite.dk/ipsvd/ size tcpsvd.o text data bss dec hex filename 2571 4 16 2591 a1f tcpsvd.o
* - fold recurse, depthFirst and dereference params into one param flags.Bernhard Reutner-Fischer2007-03-291-3/+6
| | | | Minor size improvement (-16b for size, -24b according to bloat-o-meter).
* make pidfile writing configurable.Denis Vlasenko2007-03-271-2/+11
| | | | [ui]toa_to_buf: change API. No users yet.
* zcip: make it work on NOMMU (+ improve NOMMU support machinery)Denis Vlasenko2007-03-261-0/+7
| | | | fsck: fix bad English in a comment
* Attempt to get more applets compile for NOMMU.Denis Vlasenko2007-03-261-9/+16
| | | | | | | TODO_config_nommu documents what I managed to compile so far (yay! msh works! cool). inetd, telnetd, httpd still do not compile. TODO Also make fork(), daemon() produce warnings on compile stage (in addition to erros on link stage).
* libbb: rework NOMMU helper API so that it makes more senseDenis Vlasenko2007-03-261-28/+58
| | | | and easier to use. Doesn't compile - need two more commits.
* add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copyDenis Vlasenko2007-03-251-2/+6
|
* #ifdef out re_execed on MMU machinesDenis Vlasenko2007-03-241-1/+1
|
* NOMMU re-exec trick shuld not depend on existence of "don't daemonize"Denis Vlasenko2007-03-241-3/+2
| | | | | option for every affected applet (and dnsd, for example, don't have one). Thus rework re-exec support to not require it. Code got smaller too.
* fix accumulated whitespace and indentation damageDenis Vlasenko2007-03-201-2/+2
|
* include <stddef.h> so that ptrdiff_t is again availableDenis Vlasenko2007-03-181-0/+1
|
* punt useless header as pointed out by src.obsolete.headersMike Frysinger2007-03-171-1/+0
|
* gzip: Improve ptr_to_globals trick, allowing gccDenis Vlasenko2007-03-151-1/+4
| | | | to optimize better. -480 bytes.
* networking/interface.c: was doing really strange caching of fd'sDenis Vlasenko2007-03-151-6/+1
| | | | open for getting ifconfig data - ??! Simplified all that. -200 bytes.
* modify ptr_to_globals trick so that we do not violateDenis Vlasenko2007-03-151-0/+4
| | | | type safety (well, sort of ;))
* arp, networking/interface.c: eliminate staticsDenis Vlasenko2007-03-141-3/+3
| | | | | and unneeded on-stack buffers, disable (comment out) some apparently unused (and buggy) code paths. -700 bytes.
* stop using big static buffer for inode hashDenis Vlasenko2007-03-141-1/+4
|
* gzip: bbunzip integration fixesDenis Vlasenko2007-03-141-0/+4
|
* introduce and use setfscreatecon_or_dieDenis Vlasenko2007-03-121-0/+1
| | | | | (patch by Yuichi Nakamura <ynakam@hitachisoft.jp>) runcon: *yet another* fix for vda's brainfart :(
* next portion of selinux updates: chcon, runcon. FromDenis Vlasenko2007-03-111-0/+3
| | | | | Yuichi Nakamura <himainu-ynakam@miomio.jp> KaiGai Kohei <busybox@kaigai.gr.jp>
* selinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> (HitachiSoft)Denis Vlasenko2007-03-101-2/+6
|
* diff: failed to confirm "static bug" in gcc - reinstating statics.Denis Vlasenko2007-03-091-0/+1
| | | | microscopic code improvements.
* clean up accumulated whitespace damageDenis Vlasenko2007-03-071-1/+1
|
* ifupdown: code to deconstruct the state_list gracefullyDenis Vlasenko2007-03-061-0/+1
| | | | (patch by Gabriel L. Somlo <somlo@cmu.edu>)
* start_stop_daemon: add -chuid supportDenis Vlasenko2007-02-261-0/+3
|
* sort: fix multiple -k (was ignoring all except last)Denis Vlasenko2007-02-171-1/+1
|
* init: code readability enhancements; very small code changesDenis Vlasenko2007-02-171-1/+1
|
* klogd: code de-obfuscation with small code size reductionDenis Vlasenko2007-02-171-0/+1
|
* syslogd: fix "readpath bug" by using readlink insteadDenis Vlasenko2007-02-111-2/+2
| | | | libbb: rename xgetcwd and xreadlink
* ping: support -I addr in family neutral manner; reuse a bit of common codeDenis Vlasenko2007-02-091-0/+1
|
* make sure ps/top output what they claim: vsz, not rss ... down the line we ↵Mike Frysinger2007-02-081-3/+3
| | | | should make the output controllable either at runtime or buildtime as both statistics are quite useful
* tftp: fix IPv6 falloutDenis Vlasenko2007-02-071-2/+2
|
* fix #ifdef ENABLE_xxx -> #ifDenis Vlasenko2007-02-071-1/+1
|
* new applets: selinux utils by KaiGai Kohei <kaigai@kaigai.gr.jp>Denis Vlasenko2007-02-061-0/+1
|
* EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>Denis Vlasenko2007-02-061-4/+5
|
* udhcp: use improved gethostbyname replacement from IPv6 codeDenis Vlasenko2007-02-041-2/+6
|
* ifconfig: use IPv6 infrastructureDenis Vlasenko2007-02-041-1/+1
|
* mount: (try to) support cifs with IPv6Denis Vlasenko2007-02-041-1/+4
|