1. df7d0df use weak symbols for the POSIX functions that will be used by C threads by Jens Gustedt · 10 years ago
  2. 6eb1950 add C11 timespec_get function, with associated time.h changes for C11 by Rich Felker · 10 years ago
  3. 86876db fix non-static dummy function that slipped in with locale implementation by Rich Felker · 10 years ago
  4. 36c30c4 add missing legacy LFS *64 symbol aliases by Szabolcs Nagy · 10 years ago
  5. 546f6b3 fix memory leak in regexec when input contains illegal sequence by Szabolcs Nagy · 10 years ago
  6. 3bed89a fix off-by-one in bounds check in fpathconf by Rich Felker · 10 years ago
  7. 633183b fix potential read past end of buffer in getnameinfo service name lookup by Rich Felker · 10 years ago
  8. 4ec2d25 remove incorrect and useless check in network service name lookup code by Rich Felker · 10 years ago
  9. 4674809 fix case mapping for U+00DF (ß) by Rich Felker · 10 years ago
  10. fff5469 make non-waiting paths of sem_[timed]wait and pthread_join cancelable by Rich Felker · 10 years ago
  11. 80e6485 remove an extra layer of buffer copying in getnameinfo reverse dns by Rich Felker · 10 years ago
  12. 6e2bb7a fix multiple stdio functions' behavior on zero-length operations by Rich Felker · 10 years ago
  13. 402611c suppress null termination when fgets reads EOF with no data by Rich Felker · 10 years ago
  14. 49d2c8c fix dn_expand empty name handling and offsets to 0 by Szabolcs Nagy · 10 years ago
  15. 8d998a7 add malloc_usable_size function and non-stub malloc.h by Rich Felker · 10 years ago
  16. f5fb20b refrain from spinning on locks when there is already a waiter by Rich Felker · 10 years ago
  17. 97a7512 spin before waiting on futex in mutex and rwlock lock operations by Rich Felker · 10 years ago
  18. 2ff714c spin in sem_[timed]wait before performing futex wait by Rich Felker · 10 years ago
  19. b8a9c90 sanitize number of spins in userspace before futex wait by Rich Felker · 10 years ago
  20. 5345c9b fix false ownership of stdio FILEs due to tid reuse by Rich Felker · 10 years ago
  21. b8ca9eb fix fallback checks for kernels without private futex support by Rich Felker · 10 years ago
  22. a629328 fix use of uninitialized memory with application-provided thread stacks by Rich Felker · 10 years ago
  23. 4992ace further simplify and optimize new cond var by Rich Felker · 10 years ago
  24. 2c4b510 simplify and improve new cond var implementation by Rich Felker · 10 years ago
  25. 37195db redesign cond var implementation to fix multiple issues by Rich Felker · 10 years ago
  26. 4220d29 fix possible failure-to-wake deadlock with robust mutexes by Rich Felker · 10 years ago
  27. de7e99c make pointers used in robust list volatile by Rich Felker · 10 years ago
  28. d338b50 fix robust mutex unrecoverable status, and related clean-up by Rich Felker · 10 years ago
  29. fffc5cd fix false ownership of mutexes due to tid reuse, using robust list by Rich Felker · 10 years ago
  30. 25d12fc optimize locking against vm changes for mmap/munmap by Rich Felker · 10 years ago
  31. b092f1c enable private futex for process-local robust mutexes by Rich Felker · 10 years ago
  32. bc09d58 make futex operations use private-futex mode when possible by Rich Felker · 10 years ago
  33. d86af2a fix #ifdef inside a macro argument list in __init_tls.c by Szabolcs Nagy · 10 years ago
  34. b04971d add inline isspace in ctype.h as an optimization by Szabolcs Nagy · 10 years ago
  35. 4fe57ca add dlerror message for static-linked dlsym failure by Rich Felker · 10 years ago
  36. dc65fdd fix dlerror when using dlopen with a static libc by Clément Vasseur · 10 years ago
  37. 0a24be2 make endmntent function handle null argument by Timo Teräs · 10 years ago
  38. 5059deb harden locale name handling and prevent slashes in LC_MESSAGES by Rich Felker · 10 years ago
  39. ecc082c implement ffsl and ffsll functions by Rich Felker · 10 years ago
  40. b5bbe79 add framework for mmap2 syscall unit to vary by arch by Rich Felker · 10 years ago
  41. 6527b03 plural rule evaluator rewrite for dcngettext by Szabolcs Nagy · 10 years ago
  42. 08e4052 reimplement if_nameindex and getifaddrs using netlink by Timo Teräs · 11 years ago
  43. a126188 tweaks to plural rules evaluator by Szabolcs Nagy · 10 years ago
  44. e4dd0ab harden dcngettext plural processing by Rich Felker · 10 years ago
  45. 6e89210 harden mo file processing for locale/translations by Rich Felker · 10 years ago
  46. 73d2a3b implement non-default plural rules for ngettext translations by Rich Felker · 10 years ago
  47. 2068b4e implement gettext message translation functions by Rich Felker · 10 years ago
  48. c5b8f19 add support for LC_TIME and LC_MESSAGES translations by Rich Felker · 10 years ago
  49. 0206f59 add missing yes/no strings to nl_langinfo by Rich Felker · 10 years ago
  50. a19cd2b fix nl_langinfo table for LC_TIME era-related items by Rich Felker · 10 years ago
  51. 41421d6 implement mo file string lookup for translations by Rich Felker · 10 years ago
  52. 6cb4f91 implement locale file loading and state for remaining locale categories by Rich Felker · 10 years ago
  53. 674e28a fix locale environment variable logic for empty strings by Rich Felker · 10 years ago
  54. ddddec1 add issetugid function to check for elevated privilege by Brent Cook · 10 years ago
  55. dc9c40a fix missing flags arg to fstatat syscall in fstat fallback path by Rich Felker · 10 years ago
  56. 200d154 add or1k (OpenRISC 1000) architecture port by Stefan Kristiansson · 10 years ago
  57. 7bece9c provide getauxval(AT_SECURE) even if it is missing from the aux vector by Rich Felker · 10 years ago
  58. 5cc1872 remove useless infinite loop from end of exit function by Rich Felker · 10 years ago
  59. 72ed3d4 fix crash in regexec for nonzero nmatch argument with REG_NOSUB by Rich Felker · 10 years ago
  60. a6adb2b work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1 by Rich Felker · 10 years ago
  61. c463e11 simplify __stdio_exit static linking logic by Rich Felker · 10 years ago
  62. 781f26b implement the LOG_CONS option in syslog by Rich Felker · 10 years ago
  63. a64a045 suppress early syslog return when log socket cannot be opened by Rich Felker · 10 years ago
  64. b8c4cf6 implement the LOG_PERROR option in syslog by Rich Felker · 10 years ago
  65. da27118 fix the %m specifier in syslog by Clément Vasseur · 10 years ago
  66. 5954931 explicitly reject empty names in dynamic linker load_library function by Rich Felker · 10 years ago
  67. 349381a make dynamic linker accept colon as a separator for LD_PRELOAD by Rich Felker · 10 years ago
  68. 7296736 fix typo in microblaze setjmp asm by Rich Felker · 10 years ago
  69. 4b48b00 rename file containing pthread_cleanup_push and pop for consistency by Rich Felker · 10 years ago
  70. d96b12b rework cancellation weak alias logic not to depend on archive order by Rich Felker · 10 years ago
  71. ea496d6 fix multiple issues in legacy function getpass by Rich Felker · 10 years ago
  72. 83dc6eb eliminate use of cached pid from thread structure by Rich Felker · 10 years ago
  73. 4c48501 properly pass current locale to *_l functions when used internally by Rich Felker · 10 years ago
  74. 7424ac5 consolidate str[n]casecmp_l into str[n]casecmp source files by Rich Felker · 10 years ago
  75. d89fdec consolidate *_l ctype/wctype functions into their non-_l source files by Rich Felker · 10 years ago
  76. 0bc0309 add locale framework by Rich Felker · 10 years ago
  77. 984c25b fix failure of wide printf/scanf functions to set wide orientation by Rich Felker · 10 years ago
  78. 285f969 fix typo in a comment in __libc_start_main by Rich Felker · 10 years ago
  79. ebd8142 fix incorrect return value for fwide function by Rich Felker · 10 years ago
  80. 0b3d33d fix ungrammatical comment in posix_spawn code by Rich Felker · 10 years ago
  81. e89cfe5 fix aliasing violations in mbtowc and mbrtowc by Rich Felker · 10 years ago
  82. 2d8cc92 fix regression in mips dynamic linker by Rich Felker · 10 years ago
  83. 9a4ad02 fix regression in dynamic linker error reporting by Rich Felker · 10 years ago
  84. 5abfd55 add routing protocols to getprotoent-family functions by Timo Teräs · 10 years ago
  85. 607ce88 rename dynamic linker _start to _dlstart in the stub version by Rich Felker · 10 years ago
  86. 6ce1fad add __sysv_signal abi-compat alias for the signal function by Rich Felker · 10 years ago
  87. 1fd0f6e add __xmknod and __xmknodat abi-compat functions by Rich Felker · 10 years ago
  88. 76f2bcc consolidate __xstat abi-compat functions into a single source file by Rich Felker · 10 years ago
  89. 5474a34 implement fmtmsg function by Rich Felker · 10 years ago
  90. 3c42605 implement result address sorting in the resolver (getaddrinfo, etc.) by Rich Felker · 10 years ago
  91. fe82bb9 fix gethostby*_r result pointer value on error by Timo Teräs · 10 years ago
  92. 2e5d256 fix sendmmsg emulation return value for zero-length vector by Rich Felker · 10 years ago
  93. 3fa2eb2 rename dynamic linker entry point from _start to _dlstart by Rich Felker · 10 years ago
  94. acb7e04 implement sendmmsg and recvmmsg by Rich Felker · 10 years ago
  95. 39201d0 add tlsdesc support for x86_64 by Rich Felker · 10 years ago
  96. 5ba238e separate __tls_get_addr implementation from dynamic linker/init_tls by Rich Felker · 10 years ago
  97. 4e0b4a5 add tlsdesc support for i386 by Rich Felker · 10 years ago
  98. 880c479 optimize i386 ___tls_get_addr asm by Rich Felker · 10 years ago
  99. e75b16c change dynamic TLS installation strategy to optimize access by Rich Felker · 10 years ago
  100. 9d15d5e add arch-generic support for tlsdesc relocations to dynamic linker by Rich Felker · 10 years ago