about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* release 1.1.7 v1.1.7Rich Felker2015-03-182-1/+44
* fix MINSIGSTKSZ values for archs with large signal contextsRich Felker2015-03-1811-2/+50
* block all signals (even internal ones) in cancellation signal handlerRich Felker2015-03-161-1/+2
* update authors/contributors listRich Felker2015-03-161-0/+8
* 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
* aarch64: fix typo in bits/ioctl.hSzabolcs Nagy2015-03-141-1/+1
* aarch64: add struct _aarch64_ctx to signal.hSzabolcs Nagy2015-03-141-0/+17
* align x32 pthread type sizes to be common with 32-bit archsRich Felker2015-03-121-4/+4
* add aarch64 portSzabolcs Nagy2015-03-1153-0/+2202
* 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-0711-9/+22
* 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
* add new si_lower and si_upper siginfo_t membersSzabolcs Nagy2015-03-041-0/+7
* declare incomplete type struct itimerspec in timerfd.hRich Felker2015-03-041-0/+2
* fix preprocessor error introduced in poll.h in last commitRich Felker2015-03-041-1/+1
* fix POLLWRNORM and POLLWRBAND on mipsTrutz Behn2015-03-0410-0/+8
* fix x32 pthread type definitionsRich Felker2015-03-041-7/+7
* 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-0336-122/+125
* 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-213-10/+17
* 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
* make pthread_exit responsible for disabling cancellationRich Felker2015-02-162-3/+2
* fix type error (arch-dependent) in new aio codeRich Felker2015-02-141-1/+1
* refactor group file access codeJosiah Worcester2015-02-136-51/+71
* overhaul aio implementation for correctnessRich Felker2015-02-139-193/+440