summaryrefslogtreecommitdiff
path: root/libbb/xfuncs.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* get_terminal_width_height: do not pass insanely large valuesDenis Vlasenko2006-10-271-12/+23
|
* rename functions to more understandable namesDenis Vlasenko2006-10-261-0/+1
|
* remove bb_printf and the likeDenis Vlasenko2006-10-261-3/+3
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-201-1/+1
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-25/+7
|
* xread/write can use full_read/write (smaller code)Denis Vlasenko2006-10-121-10/+6
|
* small style fixesDenis Vlasenko2006-10-121-1/+2
|
* nmeter: new applet. ~4kDenis Vlasenko2006-10-111-10/+8
| | | | Fix build proble on x86_64
* build system overhaulDenis Vlasenko2006-10-051-67/+0
|
* rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko2006-10-031-1/+1
|
* fdformat: remove redundant checkDenis Vlasenko2006-10-031-1/+1
|
* runit/chpst: "change process state" utilityDenis Vlasenko2006-10-031-0/+8
| | | | It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k
* Teach get_terminal_width_height to fall back to $LINES and $COLUMNS whenRob Landley2006-09-201-1/+24
| | | | used via things like a serial console.
* whitespace cleanupDenis Vlasenko2006-09-171-2/+2
|
* Strangely, using // in the comments I added was not a persistent accident.Rob Landley2006-09-141-65/+62
|
* Remove pointless "const". Bloatcheck says 0 bytes difference.Rob Landley2006-09-121-1/+1
|
* - merge xstat.c into xfuncs.cBernhard Reutner-Fischer2006-09-111-0/+10
|
* getty, sulogin: convert to using bb_msg for syslog outputDenis Vlasenko2006-09-071-1/+2
|
* removed a lot of trailing \n in bb_msg() calls. It is addedDenis Vlasenko2006-09-061-1/+1
| | | | | automatically by function itself.
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-061-1/+1
| | | | | | bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually.
* xfunc: fix: && -> &. Also nuked two double semicolons...Denis Vlasenko2006-09-051-2/+2
|
* replacing func() with xfunc() where appropriateDenis Vlasenko2006-09-031-1/+1
|
* - pull from busybox_scratch: r15829:15850Bernhard Reutner-Fischer2006-08-281-63/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Various fixes, cleanups and shrinkage: saves 952 Bytes: text data bss dec hex filename 1087742 15853 790632 1894227 1ce753 ../busybox/busybox.old 1086790 15853 790632 1893275 1ce39b busybox via: # scripts/bloat-o-meter ../busybox/busybox_unstripped.old busybox_unstripped function old new delta ipcrm_main 756 822 +66 getval - 61 +61 maybe_set_utc - 40 +40 udhcpc_main 2896 2912 +16 md5_hash_block 428 437 +9 opt 8 16 +8 qgravechar 106 110 +4 make_bitmap 292 295 +3 inflate_unzip 2056 2059 +3 add_partition 1412 1414 +2 __parsespent 156 158 +2 qrealloc 41 42 +1 format - 1 +1 catv_main 313 314 +1 watch_main 293 292 -1 varunset 81 80 -1 part 1 - -1 check_if_skip 837 836 -1 start_stop_daemon_main 840 837 -3 create_lost_and_found 175 172 -3 supress_non_delimited_lines 4 - -4 static.l 4 - -4 static.c 5 1 -4 bsd_sum_file 237 233 -4 eval2 338 332 -6 arithmetic_common 166 158 -8 cmpfunc 22 5 -17 cksum_main 294 275 -19 cmp_main 465 439 -26 dd_main 1535 1508 -27 rmmod_main 376 333 -43 cut_file 727 644 -83 ipcs_main 3809 3721 -88 cut_main 722 614 -108 date_main 1443 1263 -180 remove_ids 222 - -222 ------------------------------------------------------------------------------ (add/remove: 3/4 grow/shrink: 11/18 up/down: 217/-853) Total: -636 bytes
* Another whack at scripts/individual. Now builds 212 applets.Rob Landley2006-08-091-1/+1
|
* Add comments to all the functions in this file documenting what they're for.Rob Landley2006-08-041-33/+76
|
* Thinko spotted by Vladimir Dronnikov.Rob Landley2006-08-041-1/+1
|
* Remove xcalloc() and convert its callers to xzalloc(). About half of themRob Landley2006-08-031-9/+0
| | | | | were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-22/+120
| | | | | | | | | | 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.)
* Cleaup read() and write() variants, plus a couple of new functions likeRob Landley2006-07-161-16/+69
| | | | xlseek and fdlength() for the new mkswap.
* We need xsetuid() and xsetgid() because per-user process resource limits canRob Landley2006-07-151-0/+12
| | | | | prevent a process from switching to a user that has too many processes, and when that happens WE'RE STILL ROOT. See http://lwn.net/Articles/190331/
* Denis Vlasenko spotted the lack of bounds checking in my first attempt atRob Landley2006-07-111-11/+14
| | | | itoa/utoa.
* Add itoa and utoa to see what Denis Vlasenko thinks.Rob Landley2006-07-101-1/+50
|
* This kind of paranoia is a debug option at best.Rob Landley2006-06-301-1/+1
|
* Attempt at fixing bug 815 by upgrading bb_spawn() so that builtins are atRob Landley2006-06-141-1/+15
| | | | | | | | the start of the path. (This should be under the same config option as the standalone shell, but right now that's buried in the shell menu.) Also add the ability to specify CONFIG_BUSYBOX_EXEC_PATH with /proc/self/exe as an overrideable default.
* Rich Felker suggested removing dprintf() from watch, and one thing led toRob Landley2006-05-251-0/+34
| | | | | | another... This adds bb_xspawn() support, which does vfork/exec. (I don't know why using a static instead of a local adds ~40 bytes, but using the local doesn't work...)
* A pending item in my tree I might as well check in: I plan to migrate calloc()Rob Landley2006-05-191-0/+9
| | | | | and bb_calloc() calls to bb_xzalloc() which allocates prezeroed memory but only takes one argument (the size).
* - remove emacs layout block as suggested by Robert P.J. DayBernhard Reutner-Fischer2006-05-191-9/+0
| | | | - use shorter boilerplate while at it
* Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytesRob Landley2006-05-071-9/+0
| | | | | as the old optimization did (actually does slightly better under gcc 4.0), and simplifies the code.
* Not quite compiler independent, but we've never tried to be gcc independentRob Landley2006-05-041-10/+4
| | | | | anyway. This is at least less ugly than what was there before, and fixes building all sources at once.
* - patch from Denis Vlasenko to add and use bb_xopen3()Bernhard Reutner-Fischer2006-04-131-3/+10
|
* More "extern" removals from Robert P. DayRob Landley2006-03-141-2/+4
|
* Robert P. Day removed 8 gazillion occurrences of "extern" on functionRob Landley2006-03-061-10/+10
| | | | definitions. (That should only be on prototypes.)
* remove #undef strlen, use #define strlen always but without ↵"Vladimir N. Oleynik"2006-02-201-3/+7
| | | | xfunc/BB_STRLEN_IMPLEMENTATION
* svn 14077 was completely broken and apparently never tested.Rob Landley2006-02-201-14/+4
|
* removed #undef strlen, use builtins and prototuped strlen from xfunc file ↵"Vladimir N. Oleynik"2006-02-161-1/+0
| | | | (only\!)
* more use libbb/bb_msg_read_error"Vladimir N. Oleynik"2005-11-251-1/+1
|
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-5/+5
|
* My bug. :-(Manuel Novoa III2004-03-081-0/+1
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-141-1/+1
|
* Fixup compile problem with dmallocEric Andersen2003-07-051-1/+1
|