summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2014-10-13implement uchar.h (C11 UTF-16/32 conversion) interfacesRich Felker-0/+79
2014-10-13eliminate global waiters count in pthread_onceRich Felker-9/+13
2014-10-10fix missing barrier in pthread_once/call_once shortcut pathRich Felker-2/+6
2014-10-09fix handling of negative offsets in timezone spec stringsRich Felker-10/+7
2014-10-08always provide __fpclassifyl and __signbitl definitionsRich Felker-1/+9
2014-10-06ignore access mode bits of flags in mkostemps and functions that use itRich Felker-0/+1
2014-10-04fix handling of odd lengths in swab functionRich Felker-1/+1
2014-09-22fix incorrect sequence generation in *rand48 prng functionsRich Felker-2/+2
2014-09-19fix linked list corruption in flockfile listsRich Felker-0/+1
2014-09-18math: fix exp10 not to raise invalid exception on NaNSzabolcs Nagy-4/+13
2014-09-16fix overflow corner case in strtoul-family functionsRich Felker-0/+1
2014-09-13rewrite the regex pattern parser in regcompSzabolcs Nagy-1081/+634
2014-09-08fix exp10l.c to include float.hSzabolcs Nagy-0/+1
2014-09-08prune math code on archs with binary64 long doubleSzabolcs Nagy-0/+10
2014-09-07add C11 thread creation and related thread functionsRich Felker-7/+84
2014-09-06add C11 condition variable functionsJens Gustedt-0/+57
2014-09-06add C11 mutex functionsJens Gustedt-0/+69
2014-09-06add C11 thread functions operating on tss_t and once_flagJens Gustedt-0/+42
2014-09-06use weak symbols for the POSIX functions that will be used by C threadsJens Gustedt-29/+76
2014-09-06add C11 timespec_get function, with associated time.h changes for C11Rich Felker-0/+12
2014-09-06fix non-static dummy function that slipped in with locale implementationRich Felker-1/+1
2014-09-05add missing legacy LFS *64 symbol aliasesSzabolcs Nagy-0/+23
2014-09-05fix memory leak in regexec when input contains illegal sequenceSzabolcs Nagy-5/+6
2014-09-05fix off-by-one in bounds check in fpathconfRich Felker-1/+1
2014-09-05fix potential read past end of buffer in getnameinfo service name lookupRich Felker-1/+1
2014-09-05remove incorrect and useless check in network service name lookup codeRich Felker-1/+0
2014-09-05fix case mapping for U+00DF (ß)Rich Felker-2/+1
2014-09-05make non-waiting paths of sem_[timed]wait and pthread_join cancelableRich Felker-0/+3
2014-09-05remove an extra layer of buffer copying in getnameinfo reverse dnsRich Felker-3/+2
2014-09-04fix multiple stdio functions' behavior on zero-length operationsRich Felker-9/+7
2014-09-04suppress null termination when fgets reads EOF with no dataRich Felker-1/+1
2014-09-04fix dn_expand empty name handling and offsets to 0Szabolcs Nagy-6/+9
2014-08-25add malloc_usable_size function and non-stub malloc.hRich Felker-0/+17
2014-08-25refrain from spinning on locks when there is already a waiterRich Felker-5/+5
2014-08-25spin before waiting on futex in mutex and rwlock lock operationsRich Felker-0/+20
2014-08-25spin in sem_[timed]wait before performing futex waitRich Felker-0/+5
2014-08-25sanitize number of spins in userspace before futex waitRich Felker-2/+2
2014-08-23fix false ownership of stdio FILEs due to tid reuseRich Felker-2/+40
2014-08-22fix fallback checks for kernels without private futex supportRich Felker-5/+5
2014-08-22fix use of uninitialized memory with application-provided thread stacksRich Felker-0/+2
2014-08-18further simplify and optimize new cond varRich Felker-29/+21
2014-08-18simplify and improve new cond var implementationRich Felker-40/+22
2014-08-17redesign cond var implementation to fix multiple issuesRich Felker-93/+213
2014-08-17fix possible failure-to-wake deadlock with robust mutexesRich Felker-1/+4
2014-08-17make pointers used in robust list volatileRich Felker-11/+18
2014-08-16fix robust mutex unrecoverable status, and related clean-upRich Felker-12/+4
2014-08-16fix false ownership of mutexes due to tid reuse, using robust listRich Felker-23/+26
2014-08-16optimize locking against vm changes for mmap/munmapRich Felker-8/+7
2014-08-16enable private futex for process-local robust mutexesRich Felker-1/+25
2014-08-15make futex operations use private-futex mode when possibleRich Felker-66/+82