1. 3562051 update release notes for 0.8.4 by Rich Felker · 13 years ago
  2. ce7d725 fix cancellation failure in single-threaded programs by Rich Felker · 13 years ago
  3. 787c264 support GLOB_PERIOD flag (GNU extension) to glob function by Rich Felker · 13 years ago
  4. 4904b64 update WHATSNEW in preparation for 0.8.4 (not finished) by Rich Felker · 13 years ago
  5. 5235a2a use prlimit syscall for getrlimit/setrlimit by Rich Felker · 13 years ago
  6. 26f3832 add prlimit syscall wrapper by Rich Felker · 13 years ago
  7. 0b6dc09 fix dynamic linker not to depend on DYNAMIC ptr in 0th entry of GOT by Rich Felker · 13 years ago
  8. 0706521 alias basename to glibc name for it, to meet abi goals by Rich Felker · 13 years ago
  9. 2adf2fb fix char signedness bug in dynlinker hash function by Rich Felker · 13 years ago
  10. c07daf0 fix broken reboot wrapper (syscall needs extra silly magic arguments...) by Rich Felker · 13 years ago
  11. e5d78fe fix issue with excessive mremap syscalls on realloc by Rich Felker · 13 years ago
  12. 4e3df7b fix __cplusplus extern "C" closing brace in pty.h (typo?) by Rich Felker · 13 years ago
  13. 0c4188f fix signed overflows at most-negative values in ato(i|l|ll) by Rich Felker · 13 years ago
  14. 3ed8c9f fix all missing instances of __cplusplus checks/extern "C" in headers by Rich Felker · 13 years ago
  15. 2612095 report sem value overflows in sem_post by Rich Felker · 13 years ago
  16. 42976ce add some missing GNU FNM_* extensions to the header by Rich Felker · 13 years ago
  17. 0386030 fix some details in ugly stuff that doesn't belong in libc by Rich Felker · 13 years ago
  18. 1d3c276 don't define wchar_t on c++ by Rich Felker · 13 years ago
  19. 2bb75db support vfork on i386 by Rich Felker · 13 years ago
  20. 768f39a make available a namespace-safe vfork, if supported by Rich Felker · 13 years ago
  21. 14f2e11 add dummy __cxa_finalize by Rich Felker · 13 years ago
  22. b7c683b support __cxa_atexit, and registering atexit functions from atexit handlers by Rich Felker · 13 years ago
  23. f753049 simplify atexit and fflush-on-exit handling by Rich Felker · 13 years ago
  24. 8e8ddef fix F_GETOWN return value handling by Rich Felker · 13 years ago
  25. 2b89e56 fix typo in arm clone() asm by Rich Felker · 13 years ago
  26. e6d765a fix fcntl O_* flags for arm by Rich Felker · 13 years ago
  27. 73f5ff4 make [U]INTn_C() macros have the right type... by Rich Felker · 13 years ago
  28. 5e977e8 recovering ownerdead robust mutex must reset recursive lock count by Rich Felker · 13 years ago
  29. b6f9974 simplify robust mutex unlock code path by Rich Felker · 13 years ago
  30. b8688ff fix crash if pthread_mutex_unlock is called without ever locking by Rich Felker · 13 years ago
  31. 7fe58d3 use count=0 instead of 1 for recursive mutex with only one lock reference by Rich Felker · 13 years ago
  32. b3b00d1 sysconf for PTHREAD_KEYS_MAX by Rich Felker · 13 years ago
  33. 5a2e180 synchronize cond var destruction with exiting waits by Rich Felker · 13 years ago
  34. b85fec2 fix failure-to-wake in rwlock unlock by Rich Felker · 13 years ago
  35. 8b98c09 dlsym entry point for arm by Rich Felker · 13 years ago
  36. fcaf706 dynamic linker entry point for arm by Rich Felker · 13 years ago
  37. 74cc7c6 typo (copy 2) in arm reloc.h by Rich Felker · 13 years ago
  38. cd319d7 typo in arm reloc.h by Rich Felker · 13 years ago
  39. 12ace5b first attempt at arm dynamic linking by Rich Felker · 13 years ago
  40. 4b87736 fix various bugs in path and error handling in execvp/fexecve by Rich Felker · 13 years ago
  41. 5f81468 don't crash on null strings in printf by Rich Felker · 13 years ago
  42. de543b0 fix excessive/insufficient wakes in __vm_unlock by Rich Felker · 13 years ago
  43. ede5ae7 make getmntent_r discard long lines when it returns error, not seek back by Rich Felker · 13 years ago
  44. 9cee930 improve pshared barriers by Rich Felker · 13 years ago
  45. 95b1479 next step making barrier self-sync'd destruction safe by Rich Felker · 13 years ago
  46. 8f4a115 barrier destroy must also wait for threads in other processes exiting barrier by Rich Felker · 13 years ago
  47. f0a8d60 stupid typo (caused by rather ugly spelling in POSIX..) in aio by Rich Felker · 13 years ago
  48. 067bdc2 correctly handle the degenerate barrier in the pshared case by Rich Felker · 13 years ago
  49. 3ac092b fix crash in pthread_cond_wait mutex-locked check by Rich Felker · 13 years ago
  50. 823813e fix crash in pthread_testcancel if pthread_self has not been called by Rich Felker · 13 years ago
  51. bc24453 improve/debloat mutex unlock error checking in pthread_cond_wait by Rich Felker · 13 years ago
  52. bfae1a8 check mutex owner in pthread_cond_wait by Rich Felker · 13 years ago
  53. d8dc1df fix pshared barrier wrong return value. by Rich Felker · 13 years ago
  54. 5e9e78e convert the barrier pshared option back to 0/1 values when getting it by Rich Felker · 13 years ago
  55. 7e76095 improve error handling in mntent stuff... by Rich Felker · 13 years ago
  56. f135ef3 fix missing va_end in prctl syscall wrapper by Rich Felker · 13 years ago
  57. aef84ca fix clobbering of errno in get(pw|gr)([ug]id|nam) by fclose by Rich Felker · 13 years ago
  58. 6016457 process-shared barrier support, based on discussion with bdonlan by Rich Felker · 13 years ago
  59. 3f39c9b fix incorrect allocation failure check in pthread_create by Rich Felker · 13 years ago
  60. 7e14ed1 fix ctype macros to cast argument to (unsigned) first by Rich Felker · 13 years ago
  61. 3bec53e another cond var fix: requeue count race condition by Rich Felker · 13 years ago
  62. 1fa0521 fix lost signals in cond vars by Rich Felker · 13 years ago
  63. fd142e5 cleanup various minor issues reported by nsz by Rich Felker · 13 years ago
  64. 729d636 redo cond vars again, use sequence numbers by Rich Felker · 13 years ago
  65. c11d1e6 revert previous change in cond var waiter move by Rich Felker · 13 years ago
  66. cf94016 optimize cond waiter move using atomic swap instead of cas loop by Rich Felker · 13 years ago
  67. 09ec0f3 fix logic for when wakeup is not desired on cond bcast by Rich Felker · 13 years ago
  68. cba4e1c new futex-requeue-based pthread_cond_broadcast implementation by Rich Felker · 13 years ago
  69. 97c5b5a fix ABA race in cond vars, improve them overall by Rich Felker · 13 years ago
  70. c41a76f FD_ISSET must return an int. this is the easiest way. by Rich Felker · 13 years ago
  71. 1587224 sys/user.h may need stdint.h by Rich Felker · 13 years ago
  72. d5bde7b "optimize" arm __pthread_self by Rich Felker · 13 years ago
  73. 4b153ac fix deadlock in condition wait whenever there are multiple waiters by Rich Felker · 13 years ago
  74. 2eff02e fix x86_64 user.h (previously was just a copy of i386) by Rich Felker · 13 years ago
  75. c651c47 cleanup/debloat i386 user.h by Rich Felker · 13 years ago
  76. ee6fc9a wrong __WORDSIZE in x86_64 header by Rich Felker · 13 years ago
  77. 0d4d94e protect against/handle cancellation reading shadow passwords by Rich Felker · 13 years ago
  78. 12d547b make dns lookups (and thus getaddrinfo) cancellable by Rich Felker · 13 years ago
  79. bf027ca use poll rather than select in dns lookups (also clock_gettime) by Rich Felker · 13 years ago
  80. 81a5577 fix missing SIG_DFL, SIG_IGN, SIG_ERR without posix in signal.h by Rich Felker · 13 years ago
  81. ca52e34 avoid setting FILE lock count when not using flockfile by Rich Felker · 13 years ago
  82. 319df20 gnu search.h has struct qelem... by Rich Felker · 13 years ago
  83. 4a08c85 release notes for 0.8.3 by Rich Felker · 13 years ago
  84. 0b6eb2d update syscalls with off_t arguments to handle argument alignment, if needed by Rich Felker · 13 years ago
  85. d30c331 new gcc wrapper now supports pre-4.4 gcc versions and is more robust by Rich Felker · 13 years ago
  86. 7dd86ec new installation guide with alternate and primary libc setups by Rich Felker · 13 years ago
  87. fd9e01e fix some header typos by Rich Felker · 13 years ago
  88. d23a543 make stdbool.h conform to c99 by Rich Felker · 13 years ago
  89. 2318207 fix incorrect include guard in mqueue.h by Rich Felker · 13 years ago
  90. 246e15c fix statvfs.c to match new fsid_t definition by Rich Felker · 13 years ago
  91. 32b82cf fix the fsid_t structure to match name of __val by Rich Felker · 13 years ago
  92. 03a8362 fix broken siginfo_t with _GNU_SOURCE defined by Rich Felker · 13 years ago
  93. 114c80f fix the definition of struct statvfs to match lsb abi by Rich Felker · 13 years ago
  94. 8c07f6e add some more siginfo aliases broken software expects... by Rich Felker · 13 years ago
  95. f780ac5 cleanup redundancy in bits/signal.h versions by Rich Felker · 13 years ago
  96. 224c7a3 fix the type of wchar_t on arm; support wchar_t varying with arch by Rich Felker · 13 years ago
  97. 089aeb0 fix incorrect long double parameters on arm (and other future ports) by Rich Felker · 13 years ago
  98. 53431b0 fix broken multi-inclusion guard in sys/reg.h by Rich Felker · 13 years ago
  99. d960d4f initial commit of the arm port by Rich Felker · 13 years ago
  100. 4f4bf0a disable dynamic linking/loading code in static libc builds, for now by Rich Felker · 13 years ago