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