about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* dynamic linker bootstrap overhaulRich Felker2015-04-1314-442/+338
* remove mismatched arguments from vmlock function definitionsRich Felker2015-04-111-2/+2
* apply vmlock wait to __unmapself in pthread_exitRich Felker2015-04-101-0/+4
* redesign and simplify vmlock systemRich Felker2015-04-108-45/+29
* optimize out setting up robust list with kernel when not neededRich Felker2015-04-104-7/+8
* process robust list in pthread_exit to fix detached thread use-after-unmapRich Felker2015-04-102-26/+27
* fix getdelim to set the error indicator on all failuresSzabolcs Nagy2015-04-041-2/+5
* fix rpath string memory leak on failed dlopenRich Felker2015-04-041-0/+2
* halt dynamic linker library search on errors resolving $ORIGIN in rpathRich Felker2015-04-031-8/+18
* harden dynamic linker library path searchRich Felker2015-04-011-5/+16
* regex: fix character class repetitionsSzabolcs Nagy2015-03-271-0/+5
* do not treat \0 as a backref in BRESzabolcs Nagy2015-03-231-1/+1
* fix internal buffer overrun in inet_ptonRich Felker2015-03-231-2/+3
* suppress backref processing in ERE regcompRich Felker2015-03-201-1/+1
* fix memory-corruption in regcomp with backslash followed by high byteRich Felker2015-03-201-1/+1
* block all signals (even internal ones) in cancellation signal handlerRich Felker2015-03-161-1/+2
* avoid sending huge names as nscd passwd/group queriesRich Felker2015-03-151-2/+3
* simplify nscd lookup code for alt passwd/group backendsRich Felker2015-03-154-15/+15
* add alternate backend support for getgrouplistJosiah Worcester2015-03-153-24/+86
* add aarch64 portSzabolcs Nagy2015-03-1117-0/+363
* math: add dummy implementations of 128 bit long double functionsSzabolcs Nagy2015-03-1117-4/+111
* math: add ld128 exp2l based on the freebsd implementationSzabolcs Nagy2015-03-111-1/+366
* copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy2015-03-113-4/+5
* fix regression in pthread_cond_wait with cancellation disabledRich Felker2015-03-071-0/+1
* fix FLT_ROUNDS to reflect the current rounding modeSzabolcs Nagy2015-03-071-0/+19
* fix over-alignment of TLS, insufficient builtin TLS on 64-bit archsRich Felker2015-03-062-4/+16
* add legacy functions from sysinfo.h duplicating sysconf functionalityRich Felker2015-03-041-0/+22
* fix signed left-shift overflow in pthread_condattr_setpsharedRich Felker2015-03-041-1/+1
* remove useless check of bin match in mallocRich Felker2015-03-041-1/+1
* eliminate atomics in syslog setlogmask functionRich Felker2015-03-041-4/+6
* fix init race that could lead to deadlock in malloc init codeRich Felker2015-03-041-39/+14
* make all objects used with atomic operations volatileRich Felker2015-03-0325-57/+60
* suppress masked cancellation in pthread_joinRich Felker2015-03-021-1/+5
* fix namespace issue in pthread_join affecting thrd_joinRich Felker2015-03-021-1/+2
* make aio_suspend a cancellation point and properly handle cancellationRich Felker2015-03-021-3/+9
* factor cancellation cleanup push/pop out of futex __timedwait functionRich Felker2015-03-029-26/+24
* fix failure of internal futex __timedwait to report ECANCELEDRich Felker2015-02-271-1/+1
* overhaul optimized x86_64 memset asmRich Felker2015-02-261-26/+55
* overhaul optimized i386 memset asmRich Felker2015-02-261-32/+61
* getloadavg: use sysinfo() instead of /proc/loadavgAlexander Monakov2015-02-251-11/+7
* fix possible isatty false positives and unwanted device state changesRich Felker2015-02-233-9/+8
* fix breakage in pthread_cond_wait due to typoRich Felker2015-02-231-1/+1
* support alternate backends for the passwd and group dbsJosiah Worcester2015-02-234-2/+390
* fix spurious errors in refactored passwd/group codeRich Felker2015-02-232-2/+2
* fix crashes in refactored passwd/group codeRich Felker2015-02-232-4/+4
* simplify cond var code now that cleanup handler is not neededRich Felker2015-02-221-86/+63
* fix pthread_cond_wait cancellation raceRich Felker2015-02-221-5/+38
* add new masked cancellation modeRich Felker2015-02-212-10/+16
* prepare cancellation syscall asm for possibility of __cancel returningRich Felker2015-02-205-11/+32
* map interruption of close by signal to success rather than EINPROGRESSRich Felker2015-02-201-1/+1