about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* fix errno for posix_openpt with no free ptys availableRich Felker2019-10-241-1/+3
* adjust struct timespec definition to be time64-readyRich Felker2019-10-201-1/+1
* clock_adjtime: generalize time64 not to assume old struct layout matchRich Felker2019-10-201-11/+46
* wait4, getrusage: add time64/x32 variantRich Felker2019-10-192-3/+61
* internally, define time64 rusage syscalls on x32 as the existing onesRich Felker2019-10-191-0/+2
* use struct pt_regs * rather than void * for powerpc[64] sigcontext regsRich Felker2019-10-192-2/+2
* fix fpregset_t type on powerpc64Rich Felker2019-10-191-5/+1
* fix return value of ungetc when argument is outside unsigned char rangeRich Felker2019-10-181-1/+1
* fix incorrect use of fabs on long double operand in floatscan.cRich Felker2019-10-181-4/+1
* move pthread types out of per-arch alltypes.hRich Felker2019-10-1717-128/+8
* define LONG_MAX via arch alltypes.h, strip down bits/limits.hRich Felker2019-10-1734-117/+35
* make endian.h expose unprefixed macros, functions in standard profileRich Felker2019-10-171-16/+20
* remove use of endian.h from arch reloc.h headers, clean upRich Felker2019-10-179-24/+0
* remove indirect use of endian.h from public headersRich Felker2019-10-1712-18/+0
* move __BYTE_ORDER definition to alltypes.hRich Felker2019-10-1734-69/+68
* remove per-arch definitions for va_listRich Felker2019-10-1717-48/+3
* remove i386 support for legacy struct __va_listRich Felker2019-10-171-5/+0
* mips: add single-instruction math functionsinfo@mobile-stream.com2019-10-144-0/+64
* fix cacosh results for arguments with negative imaginary partMichael Morrell2019-10-143-3/+12
* release 1.1.24 v1.1.24Rich Felker2019-10-132-1/+50
* math: fix signed int left shift ub in sqrtSzabolcs Nagy2019-10-132-4/+2
* fix aliasing-based undefined behavior in mbsrtowcsRich Felker2019-10-131-2/+8
* add Arm to the copyright fileSzabolcs Nagy2019-10-061-1/+2
* reintroduce riscv64 struct sigcontextRich Felker2019-10-021-6/+10
* fix riscv64 elf_fpregset_t type and member names mismatchRich Felker2019-09-291-5/+2
* fix riscv64 signal.h namespace violations and ucontext API mismatchesRich Felker2019-09-292-27/+20
* remove remaining traces of __tls_get_newSzabolcs Nagy2019-09-295-12/+1
* math: optimize lrint on 32bit targetsSzabolcs Nagy2019-09-271-1/+27
* clean up mips (32-bit, o32) syscall asm constraintsRich Felker2019-09-271-31/+32
* document mips r6 in INSTALL fileRich Felker2019-09-271-1/+2
* fix mips setjmp/longjmp fpu state on r6, related issuesRich Felker2019-09-262-24/+12
* fix mips r6 syscall clobber lists not to include hi/lo registersRich Felker2019-09-263-16/+30
* arm: fix setjmp and longjmp asm for armv8-aSzabolcs Nagy2019-09-262-0/+14
* fix data race in timer_create with SIGEV_THREAD notificationRich Felker2019-09-251-2/+2
* correct the operand specifiers in the riscv64 CAS routinesPalmer Dabbelt2019-09-251-2/+2
* harden thread start with failed scheduling against broken __cloneRich Felker2019-09-131-1/+1
* fix %lf in wprintfBrion Vibber2019-09-131-0/+2
* fix arm __tlsdesc_dynamic when built as thumb code without __ARM_ARCH>=5Rich Felker2019-09-111-0/+4
* fix arm __a_barrier_oldkuser when built as thumbRich Felker2019-09-111-2/+2
* fix code path where child function returns in arm __clone built as thumbRich Felker2019-09-111-7/+3
* aarch64: add HWCAP2 flags from linux v5.2Szabolcs Nagy2019-09-111-0/+8
* add new syscall numbers from linux v5.2Szabolcs Nagy2019-09-1116-0/+97
* fcntl.h: add AT_RECURSIVE from linux v5.2Szabolcs Nagy2019-09-111-0/+1
* fcntl.h: add AT_STATX_ statx sync flag definitionsSzabolcs Nagy2019-09-111-0/+4
* sched.h: add CLONE_PIDFD from linux v5.2Szabolcs Nagy2019-09-111-0/+1
* netinet/if_ether.h: add ETH_P_DSA_8021Q from linux v5.2Szabolcs Nagy2019-09-111-0/+1
* honor __WCHAR_TYPE__ on archs with legacy long definition of wchar_tRich Felker2019-09-084-0/+16
* synchronously clean up pthread_create failure due to scheduling errorsRich Felker2019-09-061-13/+18
* set explicit scheduling for new thread from calling thread, not selfRich Felker2019-09-061-21/+12
* fix unsynchronized decrement of thread count on pthread_create errorRich Felker2019-09-061-1/+2