aboutsummaryrefslogtreecommitdiff
path: root/libbb/syscalls.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* This code exists to compensate for ancient broken build environments which,Rob Landley2005-09-071-113/+0
| | | | | | | | | | | | as far as I can tell, are no longer relevant. Modern busybox refuses to build under libc5 (there's a specific test and #error for that), and I'm not sure building against 2.1 kernel headers on Alpha was ever relevant. I'm happy to put any of this back if anybody can point to a real need for it, but if so we need to specifically document what environment is being compensated for. (And we should quarrantine the build environment code into one place, anyway. Maybe "quirks.h" for known compiler and libc quirks?)
* Amir Shalem writes:Mike Frysinger2005-09-061-7/+7
| | | | this patch fix syscall names mix-up in libb/syscalls.c
* make sure __NF_sysfs exists before trying to use itMike Frysinger2005-08-271-0/+9
|
* Shaun Jackman writes: Fix typo. Use __NR_umount2 instead of __NR_pivot_root.Mike Frysinger2005-03-041-1/+1
|
* add some more commentsMike Frysinger2005-03-041-30/+29
|
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-1/+1
|
* Remove remaining libc5 support codeEric Andersen2003-07-221-7/+3
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-141-2/+1
|
* Make all syscall declarations use the syscall() functionEric Andersen2003-05-261-42/+38
|
* Major coreutils update.Manuel Novoa III2003-03-191-2/+2
|
* Use error_msg instead of fprintf(stderrGlenn L McGrath2002-11-281-4/+4
|
* Cleanup a libc5 compatibility hackEric Andersen2002-03-121-3/+2
|
* Major rework of the directory structure and the entire build system.Eric Andersen2001-10-241-2/+2
| | | | -Erik
* Add some missing includes to kill warnings when building with the defaultManuel Novoa III2001-06-291-0/+2
| | | | | | | Config.h and using gcc's -fno-builtin. There are probably other files with the similar problems. Also, if building against uClibc, don't include asm/unistd.h in syscalls.c and module_syscalls.c.
* Handle glibc 2.0.7 as wellEric Andersen2001-04-051-1/+1
|
* Some further syscall adjustments. Split the module syscalls out ofEric Andersen2001-04-051-36/+25
| | | | | | insmod and into libbb. Only enable them for libc5. glibc and uClibc don't need them. -Erik
* A number of cleanups. Now compiles with libc5, glibc, and uClibc. Fix a fewEric Andersen2001-04-051-12/+60
| | | | | | shadowed variables. Move (almost) all syscalls to libbb/syscalls.c, so I can handle them sanely and all at once. -Erik
* Convert utility.c into libbb.a. It is now a whole pile of .cEric Andersen2001-03-161-0/+76
files. Clean up the resulting damage and fix up the makefile. -Erik