about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* ensure that thread dtv pointer is never null to optimize __tls_get_addrRich Felker2013-06-032-4/+6
* Merge remote-tracking branch 'nsz/review'Rich Felker2013-05-261-1/+2
|\
| * fix the prototype of settimeofday to follow the original BSD declarationSzabolcs Nagy2013-05-261-1/+2
* | fix overflow behavior of clock() functionRich Felker2013-05-231-7/+10
|/
* math: add fma TODO comments about the underflow issueSzabolcs Nagy2013-05-193-2/+14
* math: fix two fma issues (only affects non-nearest rounding mode, x86)Szabolcs Nagy2013-05-191-4/+38
* Merge remote-tracking branch 'nsz/review'Rich Felker2013-05-1815-213/+203
|\
| * math: sin cos cleanupSzabolcs Nagy2013-05-1810-112/+128
| * math: tan cleanupsSzabolcs Nagy2013-05-186-106/+80
* | make err.h functions print __prognameRich Felker2013-05-181-0/+4
|/
* fix mknod and mknodat to accept large dev_t valuesRich Felker2013-05-162-5/+2
* math: use double_t for temporaries to avoid stores on i386Szabolcs Nagy2013-05-1521-28/+31
* fix incorrect clock tick scaling in fallback case of clock()Rich Felker2013-05-051-1/+1
* do not interpret errors in return value of times() syscallRich Felker2013-05-051-1/+1
* transition to using functions for internal signal blocking/restoringRich Felker2013-04-265-12/+57
* 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