summaryrefslogtreecommitdiffstats
path: root/include/sys
Commit message (Collapse)AuthorAgeFilesLines
...
* sync with glibcMike Frysinger2006-02-221-3/+6
|
* tweak the idea between having a MMU and actually using itMike Frysinger2006-02-181-1/+1
|
* Sync w/ glibcPeter S. Mazinger2006-01-301-5/+5
|
* move linux-specific header to linux subdirMike Frysinger2006-01-291-32/+0
|
* disable deprecated warnings for some filesMike Frysinger2006-01-201-1/+1
|
* Joseph S. Myers writes:Eric Andersen2006-01-191-0/+1
| | | | | | | | sys/syscall.h uses the IS_IN_libc define before including any header that includes libc-internal.h (where IS_IN_libc is defined). This patch makes sys/syscall.h include features.h to get the IS_IN_libc define where appropriate.
* Don't include twice features.h and correct typoPeter S. Mazinger2006-01-181-2/+1
|
* Use kernel provided syscalls for user-space, the one from libc is not usablePeter S. Mazinger2005-12-161-1/+6
|
* Sync w/ glibcPeter S. Mazinger2005-12-133-18/+64
|
* Sync w/ glibcPeter S. Mazinger2005-11-301-4/+4
|
* Sync w/ glibcPeter S. Mazinger2005-11-301-6/+25
|
* update license with glibcMike Frysinger2005-11-231-8/+8
|
* Enable __THROW,_NTH,REDIRECT_NTHPeter S. Mazinger2005-11-181-4/+1
|
* include pthreads if appropriate ala glibcMike Frysinger2005-11-151-1/+9
|
* Sync up w/ glibcPeter S. Mazinger2005-11-0412-107/+191
|
* Sync headers w/ glibcPeter S. Mazinger2005-11-032-14/+34
|
* Sync with glibcPeter S. Mazinger2005-11-031-5/+4
|
* Sync headers w/ glibcPeter S. Mazinger2005-11-031-8/+17
|
* Do not stub out functions for mmu-less systems. Hide allEric Andersen2005-10-041-0/+2
| | | | prototypes for functions disabled on mmu-less systems.
* sync with glibc versionsMike Frysinger2005-07-022-20/+78
|
* SHMLBA is now defined by arch dependent bits/shm.h file so removeJoakim Tjernlund2005-05-101-5/+0
| | | | this one. MIPS is the only one defining SHMLBA differently.
* Justin Cormack <justin@street-vision.com> writes:Mike Frysinger2005-01-061-0/+107
| | | | | | | | | | | | | | | Here is a small patch to add epoll support to uclibc. The only thing I am not sure about is what needs to be done (if anything) to make it work on 2.4/2.2 kernels (are the syscall numbers defined but give errors when called or not?). Tested on 2.6, though some other issues prevent more extensive testing at the minute. Mike Frysinger: cleaned up patch and added checks to make sure that the syscall actually exists, returning ENOSYS in cases where it doesn't.
* - Added support for 13 new syscalls to allow more things to compile when ↵Ned Ludd2004-12-201-0/+104
| | | | using uClibc. mincore() and the ones for Extended Attributes setxattr(), lsetxattr(), fsetxattr(), getxattr(), lgetxattr(), fgetxattr(), listxattr(), llistxattr(), flistxattr(), removexattr(), lremovexattr(), fremovexattr() which are optional.
* Revert Peter's __lib_gettimeofday patch. There's the minor issue ofManuel Novoa III2004-10-311-5/+0
| | | | | | adding cruft to include/sys/time.h. But also, there's no sense in making changes like this until we decide how we're going to approach the hidden symbol transition.
* Peter S. Mazinger writes:Eric Andersen2004-10-191-0/+5
| | | | | | | | | | | Hello! Would the attached patch be acceptable (maybe instead of __libc_gettimeofday using __gettimeofday) We have some issues, see http://bugs.gentoo.org/show_bug.cgi?id=65892
* Kill off all support for 'gcc -pg' / 'gprof' style profiling. There is both aEric Andersen2004-08-212-281/+0
| | | | | | | | size and performance penalty to profiling applications this way, as well as Heisenberg effects, where the act of measuring changes what is measured. There are better tools for doing profiling, such as OProfile, that do not require gcc to instrument the application code. -Erik
* Cleanup some dead wood in the header filesEric Andersen2004-07-301-6/+6
|
* Remove all reference to __GLIBC_HAVE_LONG_LONGEric Andersen2004-07-271-7/+5
|
* Support linux 2.6.x wide device major/minor numbersEric Andersen2004-07-261-24/+44
|
* Sigh. It seems some stupid programs expect this...Eric Andersen2003-10-241-0/+1
|
* It seems we need to also define SI_LOAD_SHIFT since that wasEric Andersen2003-10-221-0/+1
| | | | also exported by the Linux kernel.h header that we do not include.
* Revert to using uClibc-specific c-symbol-prefix stuffMiles Bader2003-09-261-2/+1
| | | | (__C_SYMBOL_PREFIX__).
* Add support for personality(), prctl(), ustat(), and ulimit()Eric Andersen2003-08-084-2/+145
| | | | | syscalls, which had managed to stay unimplemented thus far. -Erik
* Add a new *scanf implementation, includeing the *wscanf functions.Manuel Novoa III2003-08-011-2/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Should be standards compliant and with several optional features, including support for hexadecimal float notation, locale awareness, glibc-like locale-specific digit grouping with the `'' flag, and positional arg support. I tested it pretty well (finding several bugs in glibc's scanf in the process), but it is brand new so be aware. The *wprintf functions now support floating point output. Also, a couple of bugs were squashed. Finally, %a/%A conversions are now implemented. Implement the glibc xlocale interface for thread-specific locale support. Also add the various *_l(args, locale_t loc_arg) funcs. NOTE!!! setlocale() is NOT threadsafe! NOTE!!! The strto{floating point} conversion functions are now locale aware. The also now support hexadecimal floating point notation. Add the wcsto{floating point} conversion functions. Fix a bug in mktime() related to dst. Note that unlike glibc's mktime, uClibc's version always normalizes the struct tm before attempting to determine the correct dst setting if tm_isdst == -1 on entry. Add a stub version of the libintl functions. (untested) Fixed a known memory leak in setlocale() related to the collation data. Add lots of new config options (which Erik agreed to sort out :-), including finally exposing some of the stripped down stdio configs. Be careful with those though, as they haven't been tested in a long time. (temporary) GOTCHAs... The ctype functions are currently incorrect for 8-bit locales. They will be fixed shortly. The ctype functions are now table-based, resulting in larger staticly linked binaries. I'll be adding an option to use the old approach in the stub locale configuration.
* Patch from Stefan Allius:Eric Andersen2003-03-071-1/+1
| | | | fix a couple of gcc 3.3 compiler warnings in gmon.c
* Initial effort at adding profiling support.Eric Andersen2003-03-032-0/+281
|
* Implement sendfile64Eric Andersen2002-11-141-8/+23
| | | | -Erik
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-311-1/+1
| | | | | | | | | | | | | | | been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
* Eliminate wrapping of struct stat and use the kernel versionEric Andersen2002-08-191-114/+0
| | | | | | directly. Eliminate all the attendant baggage. Fix internal types to match kernel types more closely. -Erik
* Avoid errors in case some loon has explicitly includedEric Andersen2002-07-271-0/+2
| | | | | linux/kernel.h (even though doing so is very dumb). -Erik
* (__ASMNAME): Use C_SYMBOL_PREFIX.Miles Bader2002-07-241-3/+2
| | | | (__ASMNAME2): Macro removed.
* Rework syscall handling. Rewrite syscall handlers for x86 and ARM.Eric Andersen2002-07-221-8/+1
| | | | | | Prepare to kill the UNIFIED_SYSCALL option and instead have it be a per arch thing that is either enabled or not for that arch. -Erik
* Add missing sysctl.h and queue.hEric Andersen2002-05-022-0/+277
|
* Include our own copy of struct sysinfo to avoid binary compatibilityEric Andersen2002-03-251-2/+18
| | | | | | problems with Linux 2.4, which changed things. And thereby reduce by one more the kernel headers we depend on... -Erik
* Major rework of the include files to eliminate redundancyEric Andersen2002-03-016-514/+0
| | | | | and to better support each arch. This is a really big patch... -Erik
* Several little additions and cleanups. Add getw() and putw().Eric Andersen2002-02-021-0/+36
| | | | | | Add in some missing header files (netipx/ipx.h include/lastlog.h include/sgtty.h include/sys/perm.h) -Erik
* Add missing sys/fsuid.hEric Andersen2002-01-301-0/+36
|
* Support statvfs and statfs. Added getmntent_r (and made it useEric Andersen2002-01-061-0/+87
| | | | | strtok_r instead of strtok), taught getmntent to use getmntent_r. -Erik
* Enable several more syscalls.Eric Andersen2002-01-032-0/+196
|
* Add this so madplay will properly configure itself using ossEric Andersen2001-11-231-0/+1
| | | | | as a default output device. -Erik