about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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
* fix bad character checking in wordexpRich Felker2015-02-111-0/+1
* refactor passwd file access codeJosiah Worcester2015-02-106-49/+65
* x86_64/memset: avoid performing final store twiceDenys Vlasenko2015-02-101-1/+1
* x86_64/memset: simple optimizationsDenys Vlasenko2015-02-101-14/+16
* make protocol table zero byte separated and add ipv6 protocolsTimo Teräs2015-02-101-22/+26
* use the internal macro name FUTEX_PRIVATE in __waitSzabolcs Nagy2015-02-091-1/+1
* add IEEE binary128 long double support to floatscanSzabolcs Nagy2015-02-091-1/+9
* math: fix fmodl for IEEE binary128Szabolcs Nagy2015-02-091-1/+1
* simplify armhf fesetenvSzabolcs Nagy2015-02-081-1/+0
* fix fesetenv(FE_DFL_ENV) on mipsSzabolcs Nagy2015-02-081-1/+3
* math: fix __fpclassifyl(-0.0) for IEEE binary128Szabolcs Nagy2015-02-081-3/+2
* add parenthesis in fma.c to clarify intent and silence warningsSzabolcs Nagy2015-02-081-1/+1
* make getaddrinfo support SOCK_RAW and other socket typesRich Felker2015-02-074-34/+42
* remove cruft from x86_64 syscall.hSzabolcs Nagy2015-02-071-0/+3
* fix failure of fchmodat to report EOPNOTSUPP in the race pathRich Felker2015-02-051-2/+4
* fix fd leak race (missing O_CLOEXEC) in fchmodatRich Felker2015-02-041-1/+1
* make execvp continue PATH search on EACCES rather than issuing an errrorRich Felker2015-02-031-1/+4
* fix missing memory barrier in cancellation signal handlerRich Felker2015-02-031-0/+1
* make fsync, fdatasync, and msync cancellation pointsTrutz Behn2015-01-303-3/+3
* fix missing comma in sh setjmp asmTrutz Behn2015-01-301-1/+1
* fix erroneous return of partial username matches by getspnam[_r]Rich Felker2015-01-211-1/+1
* simplify part of getopt_longRich Felker2015-01-211-13/+11
* always set optarg in getopt_longRich Felker2015-01-211-1/+1
* overhaul __synccall and fix AS-safety and other issues in set*idRich Felker2015-01-152-45/+138
* add FUTEX_PRIVATE macro to internal futex.hRich Felker2015-01-151-0/+2
* suppress EINTR in sem_wait and sem_timedwaitRich Felker2015-01-151-1/+1
* for multithreaded set*id/setrlimit, handle case where callback does not runRich Felker2015-01-152-4/+4