summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2020-11-11lift child restrictions after multi-threaded forkRich Felker-4/+151
2020-11-11convert malloc use under libc-internal locks to use internal allocatorRich Felker-0/+36
2020-11-11give libc access to its own malloc even if public malloc is interposedRich Felker-1/+43
2020-11-11dlerror: don't gratuitously hold freebuf_queue lock while freeingRich Felker-5/+8
2020-10-30fix erroneous pthread_cond_wait mutex waiter count logic due to typoRich Felker-1/+1
2020-10-30fix missing-wake regression in pthread_cond_waitRich Felker-0/+5
2020-10-28add support for SIGEV_THREAD_ID timersJames Y Knight-2/+6
2020-10-28fix sem_close unmapping of still-referenced semaphoreRich Felker-3/+5
2020-10-27refactor setxid return path to use __syscall_retRich Felker-14/+9
2020-10-27fix setgroups behavior in multithreaded processRich Felker-1/+29
2020-10-27avoid __synccall for setrlimit on kernels with prlimit syscallRich Felker-20/+17
2020-10-26fix reintroduction of errno clobbering by atfork handlersRich Felker-0/+3
2020-10-26fix pthread_cond_wait paired with with priority-inheritance mutexRich Felker-6/+5
2020-10-24lift sigaction abort locking to fix posix_spawn child deadlockRich Felker-13/+16
2020-10-18update crypt_blowfish to support $2b$ prefixJulien Ramseier-15/+23
2020-10-14remove unused weak definition of __tl_sync in membarrier.cRich Felker-5/+0
2020-10-14move aio implementation details to a proper internal headerRich Felker-4/+14
2020-10-14remove long-unused struct __timer from pthread_impl.hRich Felker-5/+0
2020-10-14drop use of pthread_once in timer_createRich Felker-10/+7
2020-10-14remove unused SIGTIMER handler in timer_createRich Felker-6/+1
2020-10-14remove incorrect fflush from assert failure handlerRich Felker-1/+0
2020-10-14fix getgrouplist when nscd reports an empty listRich Felker-1/+2
2020-10-14fix posix_spawn interaction with fork and abort by taking lockRich Felker-3/+13
2020-10-14fix unintended observability of SIGABRT disposition reset via sigactionRich Felker-9/+8
2020-10-14implement _Fork and refactor fork using itRich Felker-9/+15
2020-10-14rename fork source fileRich Felker-0/+0
2020-10-14drop use of pthread_once in mutexattr kernel support testsRich Felker-21/+18
2020-10-14fix missing synchronization of fork with abortRich Felker-0/+3
2020-10-14move __abort_lock to its own file and drop pointless weak_alias trickRich Felker-8/+5
2020-09-28fix fork of processes with active async io contextsRich Felker-0/+19
2020-09-17avoid set*id/setrlimit misbehavior and hang in vforked/cloned childRich Felker-1/+2
2020-09-09use new SYS_faccessat2 syscall to implement faccessat with flagsRich Felker-3/+8
2020-09-03fix missing newline in herror outputRich Felker-1/+1
2020-08-30fix i386 __set_thread_area fallbackRich Felker-0/+1
2020-08-30restore h_errno ABI compatibility with ancient binariesRich Felker-0/+4
2020-08-30clean up overinclusion in files using TIOCGWINSZRich Felker-3/+0
2020-08-27remove redundant pthread struct members repeated for layout purposesRich Felker-12/+17
2020-08-27deduplicate __pthread_self thread pointer adjustment out of each archRich Felker-0/+2
2020-08-24deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSETRich Felker-0/+10
2020-08-24report res_query failures, including nxdomain/nodata, via h_errnoRich Felker-1/+15
2020-08-24make h_errno thread-localRich Felker-4/+3
2020-08-24add tcgetwinsize and tcsetwinsize functions, move struct winsizeRich Felker-0/+19
2020-08-22fix MUSL_LOCPATH searchRich Felker-1/+1
2020-08-17add gettid functionRich Felker-0/+8
2020-08-12aarch64: fix setjmp return valueSzabolcs Nagy-4/+3
2020-08-12setjmp: optimize longjmp prologuesAlexander Monakov-14/+8
2020-08-11setjmp: optimize x86 longjmp epiloguesAlexander Monakov-12/+6
2020-08-11setjmp: avoid useless REX-prefix on xor %eax, %eaxAlexander Monakov-2/+2
2020-08-11setjmp: fix x86-64 longjmp argument adjustmentAlexander Monakov-6/+6
2020-08-08prefer new socket syscalls, fallback to SYS_socketcall only if neededRich Felker-9/+23