about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* ldso: use pthread_t rather than kernel tid to track ctor visitorRich Felker2020-10-141-3/+3
* fix stale lock when allocation of ctor queue fails during dlopenRich Felker2020-10-141-1/+2
* drop use of pthread_once in mutexattr kernel support testsRich Felker2020-10-142-21/+18
* fix missing synchronization of fork with abortRich Felker2020-10-141-0/+3
* move __abort_lock to its own file and drop pointless weak_alias trickRich Felker2020-10-144-8/+5
* fix fork of processes with active async io contextsRich Felker2020-09-283-0/+19
* avoid set*id/setrlimit misbehavior and hang in vforked/cloned childRich Felker2020-09-171-1/+2
* use new SYS_faccessat2 syscall to implement faccessat with flagsRich Felker2020-09-091-3/+8
* netinet/if_ether.h: add ETH_P_MRP from linux v5.8Szabolcs Nagy2020-09-091-0/+1
* elf.h: add .note.gnu.property related definitionsSzabolcs Nagy2020-09-091-0/+2
* bits/syscall.h: add __NR_faccessat2 from linux v5.8Szabolcs Nagy2020-09-0916-0/+16
* netinet/tcp.h: update to linux v5.7Szabolcs Nagy2020-09-091-0/+3
* sys/mman.h: add MREMAP_DONTUNMAP from linux v5.7Szabolcs Nagy2020-09-091-0/+1
* sys/fanotify.h: update to linux v5.7Szabolcs Nagy2020-09-091-1/+3
* aarch64: add new HWCAP2_ macros from linux v5.6Szabolcs Nagy2020-09-091-0/+8
* aarch64: add HWCAP2_ macros from linux v5.3Szabolcs Nagy2020-09-091-0/+2
* sched.h: add CLONE_NEWTIME from linux v5.6Szabolcs Nagy2020-09-091-0/+1
* sys/random.h: add GRND_INSECURE from linux v5.6Szabolcs Nagy2020-09-091-0/+1
* sys/prctl.h: add PR_{SET,GET}_IO_FLUSHER from linux v5.6Szabolcs Nagy2020-09-091-0/+3
* netinet/udp.h: add TCP_ENCAP_ESPINTCP from linux v5.6Szabolcs Nagy2020-09-091-0/+1
* netinet/tcp.h: update for linux v5.6Szabolcs Nagy2020-09-091-2/+4
* netinet/in.h: add IPPROTO_ macros from linux v5.6Szabolcs Nagy2020-09-091-1/+3
* add pidfd_getfd and openat2 syscall numbers from linux v5.6Szabolcs Nagy2020-09-0916-0/+34
* netinet/tcp.h: update tcp_info for linux v5.5Szabolcs Nagy2020-09-091-1/+8
* use generic bits/fcntl.h for x86_64 and riscv64Rich Felker2020-09-032-78/+0
* make generic bits/fcntl.h shareable with 64-bit archsRich Felker2020-09-031-0/+6
* fix missing O_LARGEFILE values on x86_64, x32, and mips64Rich Felker2020-09-033-3/+3
* fix missing newline in herror outputRich Felker2020-09-031-1/+1
* fix i386 __set_thread_area fallbackRich Felker2020-08-301-0/+1
* restore h_errno ABI compatibility with ancient binariesRich Felker2020-08-301-0/+4
* clean up overinclusion in files using TIOCGWINSZRich Felker2020-08-303-3/+0
* fix regression with applications that expect struct winsize in ioctl.hRich Felker2020-08-303-7/+5
* configure: enable warnings by defaultRich Felker2020-08-271-2/+2
* configure: use additive warnings instead of subtracting from -WallRich Felker2020-08-271-9/+15
* configure: add further -Werror=... options to detected CFLAGSRich Felker2020-08-271-0/+4
* remove redundant pthread struct members repeated for layout purposesRich Felker2020-08-278-18/+19
* deduplicate __pthread_self thread pointer adjustment out of each archRich Felker2020-08-2717-65/+65
* deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSETRich Felker2020-08-2417-21/+16
* report res_query failures, including nxdomain/nodata, via h_errnoRich Felker2020-08-241-1/+15
* make h_errno thread-localRich Felker2020-08-242-4/+3
* add tcgetwinsize and tcsetwinsize functions, move struct winsizeRich Felker2020-08-247-7/+29
* fix MUSL_LOCPATH searchRich Felker2020-08-221-1/+1
* add gettid functionRich Felker2020-08-172-0/+9
* aarch64: fix setjmp return valueSzabolcs Nagy2020-08-121-4/+3
* setjmp: optimize longjmp prologuesAlexander Monakov2020-08-123-14/+8
* setjmp: optimize x86 longjmp epiloguesAlexander Monakov2020-08-113-12/+6
* setjmp: avoid useless REX-prefix on xor %eax, %eaxAlexander Monakov2020-08-112-2/+2
* setjmp: fix x86-64 longjmp argument adjustmentAlexander Monakov2020-08-112-6/+6
* prefer new socket syscalls, fallback to SYS_socketcall only if neededRich Felker2020-08-086-14/+27
* math: new software sqrtlSzabolcs Nagy2020-08-051-1/+253