1. 00d3d57 setvbuf: return failure if mode is invalid by A. Wilcox · 6 years ago
  2. f368d9f make FILE a complete type for pre-C11 standard profiles by Rich Felker · 6 years ago
  3. 4918b7f don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARM by Rich Felker · 6 years ago
  4. ba18c1e add membarrier syscall wrapper, refactor dynamic tls install to use it by Rich Felker · 6 years ago
  5. 7865d56 make thread list lock a recursive lock by Rich Felker · 6 years ago
  6. ad795d5 fix spurious undefined behavior in getaddrinfo by Rich Felker · 6 years ago
  7. 224d938 fix invalid free of partial addrinfo list with multiple services by Rich Felker · 6 years ago
  8. 9d44b64 install dynamic tls synchronously at dlopen, streamline access by Rich Felker · 6 years ago
  9. 8052889 fix data race between new pthread_key_delete and dtor execution by Rich Felker · 6 years ago
  10. 639bcf2 introduce namespace-safe rwlock aliases; use in pthread_key_create by Rich Felker · 6 years ago
  11. ba74a42 rewrite pthread_key_delete to use global thread list by Rich Felker · 6 years ago
  12. e4235d7 rewrite __synccall in terms of global thread list by Rich Felker · 6 years ago
  13. 8f11e61 track all live threads in an AS-safe, fully-consistent linked list by Rich Felker · 6 years ago
  14. 04335d9 always block signals for starting new threads, refactor start args by Rich Felker · 6 years ago
  15. 5b74eed for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfo by Rich Felker · 6 years ago
  16. aa5a9d1 defer free of thread-local dlerror buffers from inconsistent context by Rich Felker · 6 years ago
  17. b202057 fix behavior of gets when input line contains a null byte by Rich Felker · 6 years ago
  18. 099b89d redesign robust mutex states to eliminate data races on type field by Rich Felker · 6 years ago
  19. 042b3ee fail fdopendir for O_PATH file descriptors by Rich Felker · 6 years ago
  20. 8d82971 locale: ensure dcngettext() preserves errno by A. Wilcox · 6 years ago
  21. ce32db4 fix call to __pthread_tsd_run_dtors with too many arguments by Rich Felker · 6 years ago
  22. 16a522b fix unintended linking dependency of pthread_key_create on __synccall by Rich Felker · 6 years ago
  23. de7dc13 halt getspnam[_r] search on error accessing TCB shadow by Rich Felker · 6 years ago
  24. 9db81b8 don't set errno or return an error when getspnam[_r] finds no entry by Rich Felker · 6 years ago
  25. 21a172d make sem_wait and sem_timedwait interruptible by signals by Rich Felker · 6 years ago
  26. 1ec71c5 don't fail pthread_sigmask/sigprocmask on invalid how when set is null by Rich Felker · 6 years ago
  27. a63c010 add __timedwait backend workaround for old kernels where futex EINTRs by Rich Felker · 6 years ago
  28. c00cdef on failed aio submission, set aiocb error and return value by Rich Felker · 6 years ago
  29. a9a9882 don't create aio queue/map structures for invalid file descriptors by Rich Felker · 6 years ago
  30. 8511511 move aio queue allocation from io thread to submitting thread by Rich Felker · 6 years ago
  31. 1a6d6f1 fix and future-proof against stack overflow in aio io threads by Rich Felker · 6 years ago
  32. 26c66c4 add namespace-safe version of getauxval for internal use by Rich Felker · 6 years ago
  33. 7c84547 fix wordexp not to read past end of string ending with lone backslash by Rich Felker · 6 years ago
  34. d9bdfd1 fix memccpy to not access buffer past given size by Quentin Rameau · 6 years ago
  35. 122d67f optimize two-way strstr and memmem bad character shift by Rich Felker · 6 years ago
  36. 04e18b6 fix regression in setlocale for LC_ALL with per-category setting by Rich Felker · 6 years ago
  37. 79f653c fix failure to flush stderr when fflush(0) is called by Rich Felker · 6 years ago
  38. 4a08603 fix deadlock and buffered data loss race in fclose by Rich Felker · 6 years ago
  39. 00bd3b7 __libc_start_main: slightly simplify stage2 pointer setup by Alexander Monakov · 6 years ago
  40. 0239cd0 remove commented-out debug printf from strstr by Rich Felker · 6 years ago
  41. 8f5a820 fix spuriously slow check in twoway strstr/memmem cores by Rich Felker · 6 years ago
  42. 1b52863 don't omit setting errno in internal __map_file function by Rich Felker · 6 years ago
  43. 5af1f59 make the default locale (& a variant) failure-free cases for newlocale by Rich Felker · 6 years ago
  44. 74e7040 simplify newlocale and allow failure for explicit locale names by Rich Felker · 6 years ago
  45. 6753fb6 remove volatile qualification from category pointers in __locale_struct by Rich Felker · 6 years ago
  46. d88e5df adapt setlocale to support possibility of failure by Rich Felker · 6 years ago
  47. 8084d6a adjust types in FILE struct to make line buffering check less expensive by Rich Felker · 6 years ago
  48. d8870dc optimize internal putc_unlocked macro used in putc by Rich Felker · 6 years ago
  49. a21a609 fix wrong result for putc variants due to operator precedence by Rich Felker · 6 years ago
  50. 9dd1912 further optimize getc/putc when locking is needed by Rich Felker · 6 years ago
  51. 7eda27d use prototype for function pointer in static link libc init barrier by Rich Felker · 6 years ago
  52. ba0d83e fix error in constraints for static link libc init barrier by Rich Felker · 6 years ago
  53. ab5e1e3 fix build regression due to missing file for putc changes by Rich Felker · 6 years ago
  54. d8f2efa bypass indirection through pointer objects to access stdin/out/err by Rich Felker · 6 years ago
  55. d664061 optimize hot paths of putc with manual shrink-wrapping by Rich Felker · 6 years ago
  56. dd8f02b optimize hot paths of getc with manual shrink-wrapping by Rich Felker · 6 years ago
  57. 7136836 document and make explicit desired noinline property for __init_libc by Rich Felker · 6 years ago
  58. 4390383 impose barrier between thread pointer setup and use for static linking by Rich Felker · 6 years ago
  59. 2085378 move stdio locking MAYBE_WAITERS definition to stdio_impl.h by Rich Felker · 6 years ago
  60. e901613 x86_64: add single instruction fma by Szabolcs Nagy · 6 years ago
  61. 7396ef0 arm: add single instruction fma by Szabolcs Nagy · 6 years ago
  62. 7c5f3bb powerpc: add single instruction fabs, fabsf, fma, fmaf, sqrt, sqrtf by Szabolcs Nagy · 6 years ago
  63. 1da534a s390x: add single instruction fma and fmaf by Szabolcs Nagy · 6 years ago
  64. 481006f allow escaped path-separator slashes in glob by Rich Felker · 6 years ago
  65. d44b07f rewrite core of the glob implementation for correctness & optimization by Rich Felker · 6 years ago
  66. b6d701a combine arch ABI's DTP_OFFSET into DTV pointers by Rich Felker · 6 years ago
  67. 09a805a fix redundant computations of strlen in glob append function by Rich Felker · 6 years ago
  68. e255258 fix invalid substitute of [1] for flexible array member in glob by Rich Felker · 6 years ago
  69. 7b384c4 fix fesetround error checking by Szabolcs Nagy · 6 years ago
  70. b3389bb fix build regression on armhf in tlsdesc asm by Rich Felker · 6 years ago
  71. d1395c4 allow freeaddrinfo of arbitrary sublists of addrinfo list by Rich Felker · 6 years ago
  72. 7bf773a inline cp15 thread pointer load in arm dynamic TLSDESC asm when possible by Rich Felker · 6 years ago
  73. 0beb9df add TLSDESC support for 32-bit arm by Rich Felker · 6 years ago
  74. 4d0a821 fix aliasing-based undefined behavior in string functions by Rich Felker · 6 years ago
  75. 8cd738b optimize nop case of wmemmove by Rich Felker · 6 years ago
  76. 82c41e9 fix undefined pointer comparison in wmemmove by Rich Felker · 6 years ago
  77. debadaa fix undefined pointer comparison in memmove by Rich Felker · 6 years ago
  78. c50985d new tsearch implementation by Szabolcs Nagy · 8 years ago
  79. f381c11 fix getaddrinfo regression with AI_ADDRCONFIG on some configurations by Rich Felker · 6 years ago
  80. 7b3348a support setting of default thread stack size via PT_GNU_STACK header by Rich Felker · 6 years ago
  81. c0058ab increase default thread stack/guard size by Rich Felker · 6 years ago
  82. 792f327 limit the configurable default stack/guard size for threads by Rich Felker · 6 years ago
  83. c7ed3e9 remove redundant declarations of __default_stacksize, __default_guardsize by Rich Felker · 6 years ago
  84. 11ce1b1 fix benign data race in pthread_attr_init by Rich Felker · 6 years ago
  85. 84d061d fix deletion of pthread tsd keys that still have non-null values stored by Rich Felker · 6 years ago
  86. 0db393d fix race condition in file locking by Kaarle Ritvanen · 6 years ago
  87. 1f6cbdb getdelim: only grow buffer when necessary, improve OOM behavior by Rich Felker · 6 years ago
  88. 849e760 fix null pointer subtraction and comparison in stdio by Rich Felker · 6 years ago
  89. 5cd309f fix failure of getdelim to set stream orientation on error by Rich Felker · 6 years ago
  90. 5994de4 check for kernel support before allowing robust mutex creation by Rich Felker · 6 years ago
  91. dbcfb16 always reset DST rules during tzset by Benjamin Peterson · 6 years ago
  92. d6c855c fix undefined behavior in strto* via FILE buffer pointer abuse by Rich Felker · 6 years ago
  93. c849719 improve error handling of ttyname_r and isatty by Benjamin Peterson · 6 years ago
  94. e13063a add hidden version of &errno accessor function by Rich Felker · 6 years ago
  95. da55d48 fix build regression in sysconf for archs with variable page size by Rich Felker · 6 years ago
  96. 017e67d drop lazy plural forms init in dcngettext by Rich Felker · 6 years ago
  97. 036df43 fix regression with compilers not incorporating C99 DR#289 resolution by Rich Felker · 6 years ago
  98. 3e14bbc wireup linux/name_to_handle_at and name_to_handle_at syscalls by Khem Raj · 6 years ago
  99. 5e46e8d remove vis.h protected-visibility hack by Rich Felker · 6 years ago
  100. 5f12ffe split internal lock API out of libc.h, creating lock.h by Rich Felker · 6 years ago