about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* release 1.1.22 v1.1.22Rich Felker2019-04-092-1/+42
* in membarrier fallback, allow for possibility that sigaction failsRich Felker2019-04-091-8/+9
* fix the use of syscall result in dl_mmapIlya Matveychikov2019-04-061-1/+1
* fix signature of function accepted by makecontextBobby Bingham2019-04-051-1/+1
* fix unintended global symbols in atanl.cDan Gohman2019-04-031-3/+3
* use __strchrnul instead of strchr and strlen in execvpeFrediano Ziglio2019-04-021-2/+1
* delete a redundant if in dynamic linker ctor execution loopRay2019-04-021-1/+0
* fix harmless-by-chance typo in priority inheritance mutex codeRich Felker2019-04-011-1/+1
* implement priority inheritance mutexesRich Felker2019-03-314-8/+93
* clean up access to mutex type in pthread_mutex_trylockRich Felker2019-03-291-2/+2
* support archs with no renameat syscall, only renameat2Drew DeVault2019-03-212-2/+8
* support archs with no mlock syscall, only mlock2Drew DeVault2019-03-211-0/+4
* fix data race choosing next key slot in pthread_key_createRich Felker2019-03-211-1/+1
* fix crash/out-of-bound read in sscanfRich Felker2019-03-142-2/+3
* fix namespace violation in dependencies of mtx_lockRich Felker2019-03-131-1/+1
* aarch64: add HWCAP_ definitions from linux v5.0Szabolcs Nagy2019-03-131-0/+3
* sys/prctl.h: add PR_PAC_RESET_KEYS from linux v5.0Szabolcs Nagy2019-03-131-0/+7
* elf.h: add NT_ definitions from linux v5.0Szabolcs Nagy2019-03-131-0/+2
* elf.h: update with C-SKY definitionsSzabolcs Nagy2019-03-131-1/+57
* aarch64, or1k: add kexec_file_load syscall number from linux v5.0Szabolcs Nagy2019-03-132-0/+2
* netinet/tcp.h: add TCP_NLA_SRTT from linux v5.0Szabolcs Nagy2019-03-131-0/+1
* netinet/udp.h: add UDP_GRO from linux v5.0Szabolcs Nagy2019-03-131-0/+1
* powerpc: add PTRACE_SYSEMU from linux v4.20Szabolcs Nagy2019-03-132-0/+4
* aarch64: add HWCAP_SSBS from linux v4.20Szabolcs Nagy2019-03-131-0/+1
* bits/ioctl.h: add TIOC{G,S}ISO7816 from linux v4.20Szabolcs Nagy2019-03-131-0/+2
* sys/prctl.h: add PR_SPEC_INDIRECT_BRANCH from linux v4.20Szabolcs Nagy2019-03-131-0/+1
* netinet/in.h add IPV6_MULTICAST_ALL from linux v4.20Szabolcs Nagy2019-03-131-0/+1
* add PACKET_IGNORE_OUTGOING sockopt from linux v4.20Szabolcs Nagy2019-03-131-0/+1
* sys/mman.h: add new hugetlb mmap flags from linux v4.19Szabolcs Nagy2019-03-132-0/+4
* arm: add io_pgetevents syscall number from v4.19Szabolcs Nagy2019-03-131-0/+1
* aarch64, or1k: define rseq syscall number following linux v4.19Szabolcs Nagy2019-03-132-0/+2
* elf.h: add new mips core dump note values from linux v4.19Szabolcs Nagy2019-03-131-0/+2
* netinet/udp.h: add UDP_ENCAP_RXRPC from linux v4.19Szabolcs Nagy2019-03-131-0/+1
* netinet/tcp.h: add tcp_info fields from linux v4.19Szabolcs Nagy2019-03-131-0/+8
* sys/inotify.h: add IN_MASK_CREATE from linux v4.19Szabolcs Nagy2019-03-131-0/+1
* sys/socket.h: add SO_TXTIME from linux v4.19Szabolcs Nagy2019-03-131-0/+2
* handle labels with 8-bit byte values in dn_skipnameRyan Fairfax2019-03-131-2/+5
* fix POSIX_FADV_DONTNEED/_NOREUSE on s390xJonathan Neuschäfer2019-03-132-0/+5
* expose TSVTX unconditionally in tar.hRich Felker2019-03-131-4/+0
* setvbuf: return failure if mode is invalidA. Wilcox2019-03-121-1/+3
* make FILE a complete type for pre-C11 standard profilesRich Felker2019-03-125-0/+20
* fix invalid-/double-/use-after-free in new dlopen ctor executionRich Felker2019-03-101-1/+2
* don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARMRich Felker2019-03-051-1/+1
* avoid malloc of ctor queue for programs with no external depsRich Felker2019-03-031-2/+9
* avoid malloc of deps arrays for ldso and vdsoRich Felker2019-03-031-0/+3
* avoid malloc of deps array for programs with no external depsRich Felker2019-03-031-3/+10
* fix malloc misuse for startup ctor queue, breakage on fdpic archsRich Felker2019-03-031-5/+9
* synchronize shared library dtor exec against concurrent loads/ctorsRich Felker2019-03-031-1/+17
* overhaul shared library ctor execution for dependency order, concurrencyRich Felker2019-03-031-17/+101
* record preloaded libraries as direct pseudo-dependencies of main appRich Felker2019-03-021-4/+11