about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* optimize/debloat raiseRich Felker2013-04-261-2/+2
* prevent code from running under a thread id which already gave ESRCHRich Felker2013-04-261-1/+7
* synccall signal handler need not handle dead threads anymoreRich Felker2013-04-261-9/+0
* fix clobbering of signal mask when creating thread with sched attributesRich Felker2013-04-261-1/+1
* make last thread's pthread_exit give exit(0) a consistent stateRich Felker2013-04-261-3/+13
* use atomic decrement rather than cas in pthread_exit thread countRich Felker2013-04-261-4/+1
* add comments on some of the pthread_exit logicRich Felker2013-04-261-2/+15
* always block signals in pthread_exit before decrementing thread countRich Felker2013-04-261-2/+2
* remove explicit locking to prevent __synccall setuid during posix_spawnRich Felker2013-04-261-13/+0
* fix reversed argument order x86_64 sigsetjmp's call to sigprocmaskRich Felker2013-04-221-2/+2
* comment potentially-confusing use of struct crypt_data typeRich Felker2013-04-202-1/+10
* make dynamic linker accept : or \n as path separatorRich Felker2013-04-201-8/+8
* getifaddrs: implement proper ipv6 netmasksrofl0r2013-04-091-2/+11
* mbrtowc: do not leave mbstate_t in permanent-fail state after EILSEQRich Felker2013-04-081-1/+1
* implement mbtowc directly, not as a wrapper for mbrtowcRich Felker2013-04-081-5/+39
* optimize mbrtowcRich Felker2013-04-081-3/+2
* fix out-of-bounds access in UTF-8 decodingRich Felker2013-04-081-1/+1
* fix signalfd not to ignore flagsRich Felker2013-04-071-1/+12
* silence nonsensical warnings in timer_createRich Felker2013-04-061-2/+2
* add support for program_invocation[_short]_nameRich Felker2013-04-062-2/+12
* fix argument omission in ABI-compat weak_alias for fscanfRich Felker2013-04-061-1/+1
* Add ABI compatability aliases.Isaac Dunham2013-04-0513-0/+38
* fix type error in pthread_create, introduced with pthread_getattr_npRich Felker2013-04-061-1/+1
* getifaddrs: remove unused labelrofl0r2013-04-061-1/+0
* getifaddrs: use if_nameindex to enumerate interfacesrofl0r2013-04-051-23/+9
* getifaddrs: one less indent levelrofl0r2013-04-051-30/+28
* getifaddrs: less mallocrofl0r2013-04-051-55/+52
* add getifaddrsrofl0r2013-04-051-0/+191
* implement dn_skipname (legacy resolver function)Rich Felker2013-04-041-0/+12
* add put*ent functions for passwd/group files and similar for shadowRich Felker2013-04-043-0/+34
* cleanup wcstombsRich Felker2013-04-041-12/+1
* cleanup mbstowcs wrapperRich Felker2013-04-041-10/+0
* minor optimization to mbstowcsRich Felker2013-04-041-2/+1
* fix incorrect range checks in wcsrtombsRich Felker2013-04-041-3/+3
* overhaul mbsrtowcsRich Felker2013-04-041-69/+64
* __time_to_tm: initialize tm_zone and tm_gmtoffrofl0r2013-04-021-0/+2
* fix typo in setpriority syscall wrapperRich Felker2013-04-011-1/+1
* implement pthread_getattr_npRich Felker2013-03-313-2/+31
* remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker2013-03-2615-23/+27
* provide emulation of fcntl F_DUPFD_CLOEXEC on old kernelsRich Felker2013-03-261-0/+16
* in pipe2, use pipe() rather than __syscall(SYS_pipe, ...) for fallbackRich Felker2013-03-251-3/+3
* rewrite popen to use posix_spawn instead of fragile vfork hacksRich Felker2013-03-241-41/+41
* remove cruft from pre-posix_spawn version of the system functionRich Felker2013-03-241-6/+0
* fix multiple bugs in syslog interfacesRich Felker2013-03-231-24/+27
* fix types for wctype_t and wctrans_tRich Felker2013-03-041-4/+4
* fix integer type issue in strverscmpRich Felker2013-02-261-1/+3
* implement non-stub strverscmpRich Felker2013-02-261-2/+35
* replace stub with working strcasestrRich Felker2013-02-211-2/+4
* fix wrong return value from wmemmove on forward copiesRich Felker2013-02-211-1/+2
* use memcmp instead of str[n]cmp for temp function XXXXXX checkingRich Felker2013-02-202-2/+2