about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* allow subarch-specific asm, including asm specific to the defaultRich Felker2013-08-112-0/+9
* fix _NSIG and SIGRTMAX on mipsRich Felker2013-08-102-2/+4
* fix definitions of WIFSTOPPED and WIFSIGNALED to support up to signal 127Rich Felker2013-08-102-4/+4
* add pthread_setaffinity_np and pthread_getaffinity_np functionsRich Felker2013-08-104-18/+29
* add cpu affinity interfacesRich Felker2013-08-104-0/+90
* change sigset_t functions to restrict to _NSIGRich Felker2013-08-094-5/+5
* optimize posix_spawn to avoid spurious sigaction syscallsRich Felker2013-08-093-12/+37
* fix missing errno from exec failure in posix_spawnRich Felker2013-08-091-0/+1
* block all signals, even implementation-internal ones, in faccessat childRich Felker2013-08-091-1/+1
* block signals during forkRich Felker2013-08-081-0/+3
* work around libraries with versioned symbols in dynamic linkerRich Felker2013-08-081-11/+14
* sys/personality.h: add missing C++ compatrofl0r2013-08-081-0/+7
* sys/personality.h: add missing macrosrofl0r2013-08-081-0/+33
* add Big5 charset support to iconvRich Felker2013-08-072-0/+1066
* make fcvt decimal point location for zero make more senseRich Felker2013-08-071-1/+1
* fix ecvt/fcvt decimal point position outputRich Felker2013-08-071-1/+1
* iconv support for legacy Korean encodingsRich Felker2013-08-052-0/+678
* have new timer threads unblock their own SIGTIMERRich Felker2013-08-031-2/+2
* add system for resetting TLS to initial valuesRich Felker2013-08-034-14/+56
* fix multiple bugs in SIGEV_THREAD timersRich Felker2013-08-036-22/+36
* add some new linux AT_* flagsRich Felker2013-08-031-0/+2
* fix faccessat to support AT_EACCESS flagRich Felker2013-08-031-1/+46
* collapse euidaccess to a call to faccessatRich Felker2013-08-031-9/+1
* add prototypes for euidaccess/eaccessRich Felker2013-08-031-0/+2
* add legacy euidaccess function and eaccess alias for itRich Felker2013-08-031-0/+18
* make tdestroy allow null function pointer if no destructor is neededRich Felker2013-08-021-1/+1
* fix aliasing violations in tsearch functionsRich Felker2013-08-021-2/+10
* protect against long double type mismatches (mainly powerpc for now)Rich Felker2013-08-022-0/+28
* add legacy function vallocRich Felker2013-08-021-0/+8
* fix feature test macro logic for _BSD_SOURCERich Felker2013-08-023-7/+7
* add wcsftime_t aliasRich Felker2013-08-021-0/+3
* add missing c++ extern "C" wrapping to link.hRich Felker2013-08-021-0/+8
* make fchdir, fchmod, fchown, and fstat support O_PATH file descriptorsRich Felker2013-08-024-5/+37
* debloat code that depends on /proc/self/fd/%d with shared functionRich Felker2013-08-025-6/+26
* work around linux's lack of flags argument to fchmodat syscallRich Felker2013-08-021-1/+29
* move RPATH search after LD_LIBRARY_PATH searchRich Felker2013-08-021-2/+2
* provide useless 64-bit fcntl macros with _LARGEFILE64_SOURCERich Felker2013-08-021-0/+3
* if map_library has allocated a buffer for phdrs, free it on success tooRich Felker2013-08-021-0/+1
* improve error handling in map_library and support long phdrsRich Felker2013-08-021-12/+21
* fix uninitialized dyn variable in map_libraryRich Felker2013-08-021-1/+1
* fix (deprecated) mktemp logic and update it to match other temp functionsRich Felker2013-08-021-4/+11
* remove (no longer useful) namespace-protected __mktemp symbolRich Felker2013-08-021-4/+1
* make mkdtemp and mkstemp family leave template unchanged on failRich Felker2013-08-022-13/+18
* optimized memset asm for i386 and x86_64Rich Felker2013-08-012-0/+88
* work around gcc 4.8's generation of self-referential mem* functions at -O3Rich Felker2013-08-012-0/+13
* in pthread_getattr_np, use mremap rather than madvise to measure stackRich Felker2013-07-311-1/+2
* fix theoretical out-of-bound access in dynamic linkerRich Felker2013-07-311-1/+1
* prevent passing PT_INTERP name to dlopen from double-loading libcRich Felker2013-07-311-6/+11
* add some sanity checks in dynamic loader codeRich Felker2013-07-311-0/+10
* fix bug where read error was treated as success reading library headersRich Felker2013-07-311-1/+1