1. 31e0607 simplify and optimize pthread_mutex_trylock by Rich Felker · 14 years ago
  2. e5dd183 rwlock trylock functions were wrongly returning EAGAIN instead of EBUSY by Rich Felker · 14 years ago
  3. 7e6be42 fix major breakage in pthread_once (it was always deadlocking) by Rich Felker · 14 years ago
  4. 4820f92 fix and optimize non-default-type mutex behavior by Rich Felker · 14 years ago
  5. 1d6b1f1 implement pthread_mutexattr_[gs]etpshared functions by Rich Felker · 14 years ago
  6. 9d5251f disallow cpu time clocks as condattr clock values by Rich Felker · 14 years ago
  7. 5d0d6d9 add macros for use with d_type extension field in dirent by Rich Felker · 14 years ago
  8. 9fe28f7 fix off-by-one error in sem_(timed)wait (using old sem value instead of new) by Rich Felker · 14 years ago
  9. 5fd4a98 use the selected clock from the condattr for pthread_cond_timedwait by Rich Felker · 14 years ago
  10. 7d57e05 add prototypes for pthread_condattr_* and pthread_rwlockattr_* by Rich Felker · 14 years ago
  11. cc2e0b4 implement pthread_rwlockattr_* (essentially no-ops) by Rich Felker · 14 years ago
  12. b4d40e4 implement pthread_condattr_* interfaces by Rich Felker · 14 years ago
  13. 63b06c0 reject invalid attribute settings by Rich Felker · 14 years ago
  14. 951e764 implement barrier attribute functions (essentially no-ops) by Rich Felker · 14 years ago
  15. 8c967b9 enforce stack size min in pthread_attr_setstacksize by Rich Felker · 14 years ago
  16. 6fc5fdb implement POSIX semaphores by Rich Felker · 14 years ago
  17. 03dcc34 preliminaries to adding POSIX semaphores by Rich Felker · 14 years ago
  18. b480808 optimize POSIX TSD for fast pthread_getspecific by Rich Felker · 14 years ago
  19. a53d2f3 namespace cleanup in sys/mman.h by Rich Felker · 14 years ago
  20. ebd7af6 implement POSIX shared memory by Rich Felker · 14 years ago
  21. 71df8b2 use -L/...../ -lgcc instead of /...../libgcc.a in musl-gcc wrapper by Rich Felker · 14 years ago
  22. 07e9d63 depends on settimeofday which needs _GNU_SOURCE feature test by Rich Felker · 14 years ago
  23. eda8e9d implement futimens and utimensat by Rich Felker · 14 years ago
  24. b1b465c cleanup namespace in sys/time.h by Rich Felker · 14 years ago
  25. f2374ed implement fexecve by Rich Felker · 14 years ago
  26. 015d33c cleanup utf-8 multibyte code, use visibility if possible by Rich Felker · 14 years ago
  27. 2a195dd fix missing prototype for strsignal by Rich Felker · 14 years ago
  28. 41d5183 various changes in preparation for dynamic linking support by Rich Felker · 14 years ago
  29. 73d310e apply feature test protection to memccpy by Rich Felker · 14 years ago
  30. b8ff2aa add implementation of memccpy function by Rich Felker · 14 years ago
  31. 9f19b3e fix backwards conditional in stpncpy by Rich Felker · 14 years ago
  32. a6238c3 rewind must clear the error indicator in addition to seeking by Rich Felker · 14 years ago
  33. 71e6be6 change errno to static linkage (improves PIC code generation) by Rich Felker · 14 years ago
  34. 8cd48f0 cleanup comment cruft in startup code by Rich Felker · 14 years ago
  35. e2ee1bd make startup code PIE-compatible by Rich Felker · 14 years ago
  36. cfcbea1 remove sample utf-8 code that's not part of the standard library by Rich Felker · 14 years ago
  37. d89c9e8 use an accessor function for __libc data pointer when compiled as PIC by Rich Felker · 14 years ago
  38. 4ee039f avoid referencing address of extern function from vdprintf by Rich Felker · 14 years ago
  39. ba68efc shave off 2 bytes from crt1.o _start by Rich Felker · 14 years ago
  40. 3075f7e cleanup asprintf stuff by Rich Felker · 14 years ago
  41. 46b9942 prototypes for GNU asprintf/vasprintf by Rich Felker · 14 years ago
  42. bdc9ed1 fix %n specifier, again. this time it was storing the wrong value. by Rich Felker · 14 years ago
  43. f552c79 include sys/sysmacros.h from sys/types.h when _GNU_SOURCE is defined by Rich Felker · 14 years ago
  44. b1b7523 fix typo in inotify structure by Rich Felker · 14 years ago
  45. 26031da make malloc(0) return unique pointers rather than NULL by Rich Felker · 14 years ago
  46. 598a014 fix simple_malloc malloc(0) behavior not to return non-unique pointers by Rich Felker · 14 years ago
  47. a23baf5 fix simple_malloc size restrictions by Rich Felker · 14 years ago
  48. 96f2197 fix null pointer dereference introduced in last sigprocmask commit by Rich Felker · 14 years ago
  49. eee150f make real symbols for the legacy (nonstandardized) utmp functions by Rich Felker · 14 years ago
  50. d6a1e0c resolve some header namespace non-issues by Rich Felker · 14 years ago
  51. 855df69 move the GNU siginfo renaming so it doesn't lead to mismatching names by Rich Felker · 14 years ago
  52. 8668f03 fill in some missing siginfo stuff in signal.h by Rich Felker · 14 years ago
  53. 2b43ef8 make sys/param.h not depend on PATH_MAX and NAME_MAX by Rich Felker · 14 years ago
  54. 13e8459 workaround gcc bug 46926 by providing a dumb sincos implementation by Rich Felker · 14 years ago
  55. 98e0214 use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit code by Rich Felker · 14 years ago
  56. 5316d08 fix typo in wordexp.h (note that the function is still unimplemented) by Rich Felker · 14 years ago
  57. 4b1244a implement the remaining clock_* interfaces by Rich Felker · 14 years ago
  58. 19eb13b race condition fix: block all signals before decrementing thread count by Rich Felker · 14 years ago
  59. a49c119 prevent sigprocmask/pthread_sigmask from blocking implementation signals by Rich Felker · 14 years ago
  60. fb11b6b make pthread_exit run dtors for last thread, wait to decrement thread count by Rich Felker · 14 years ago
  61. 69ecbd0 make mktemp match the historic behavior, and update functions that use it by Rich Felker · 14 years ago
  62. 2e6239d fix major bug created from copying mkdtemp logic by Rich Felker · 14 years ago
  63. 095a5ae add syscall wrappers for inotify by Rich Felker · 14 years ago
  64. cc2a822 cleanup cruft left from when kernel and user time_t disagreed by Rich Felker · 14 years ago
  65. 52874c8 prototype wait3 and wait4 by Rich Felker · 14 years ago
  66. f3ef7a6 add missing WIFCONTINUED macro and improve WIFSIGNALED by Rich Felker · 14 years ago
  67. b386d81 prototypes for brk and sbrk by Rich Felker · 14 years ago
  68. ad2fe25 support the ugly and deprecated ucontext and sigcontext header stuff... by Rich Felker · 14 years ago
  69. e9417ff add pthread_atfork interface by Rich Felker · 14 years ago
  70. 446b420 major improvements to temp file name generator by Rich Felker · 14 years ago
  71. 3e9e301 reformat mkstemp like mkdtemp by Rich Felker · 14 years ago
  72. d5ca067 add portable lchown (trivial to support and a few ancient things want it..) by Rich Felker · 14 years ago
  73. 982a478 prepare WHATSNEW for release by Rich Felker · 14 years ago
  74. 6d33335 document in config.mak sample that x86_64 is supported by Rich Felker · 14 years ago
  75. d09d068 update WHATSNEW in preparation for release by Rich Felker · 14 years ago
  76. 127ab57 avoid deleting the lib/empty file by Rich Felker · 14 years ago
  77. e882756 reorganize pthread data structures and move the definitions to alltypes.h by Rich Felker · 14 years ago
  78. 4fd1595 new solution for empty lib dir (old one had some problems) by Rich Felker · 14 years ago
  79. a36164c improve Makefile handling of git checkouts with missing lib/ and config.mak by Rich Felker · 14 years ago
  80. 187fe29 make daemon try the operations that might fail before fork rather than after by Rich Felker · 14 years ago
  81. 19e35c5 daemon should check for failures and return -1 by Rich Felker · 14 years ago
  82. b24bc15 don't compare elements with themselves during qsort. by Rich Felker · 14 years ago
  83. 798a12e ucontext is no longer in the standard, so use gnu-friendly struct name by Rich Felker · 14 years ago
  84. 417dbe9 some gnu software wrongly uses "struct siginfo" instead of siginfo_t... by Rich Felker · 14 years ago
  85. 56b784d add to pthread.h: pthread_mutex_timedlock and sched.h, time.h by Rich Felker · 14 years ago
  86. 5cbd76c fix printf %n specifier - missing breaks had it clobbering memory by Rich Felker · 14 years ago
  87. e3657ba patch by njk, simplifies thread register initialization for x86_64 by Rich Felker · 14 years ago
  88. 22cd9ca patch from njk: make x86_64 __uniclone branchless. by Rich Felker · 14 years ago
  89. bad4812 fix compile failure: legacy cuserid needs to define feature test by Rich Felker · 14 years ago
  90. 571312d move stdio stuff that's not arch-specific out of bits by Rich Felker · 14 years ago
  91. 8894947 protect some limit constants with feature test macros on x86_64 by Rich Felker · 14 years ago
  92. f451462 fix the types of some integer constant limits in headers by Rich Felker · 14 years ago
  93. 6d36c20 fix missing EXIT_* in stdlib.h after header cleanup by Rich Felker · 14 years ago
  94. 1d72953 feature test support in unistd.h by Rich Felker · 14 years ago
  95. cda892d fix directory reading on x86_64 by Rich Felker · 14 years ago
  96. 26f3551 prototype for gnu strcasestr (currently a stub) by Rich Felker · 14 years ago
  97. c024819 fix x86_64 wrongly reporting itself as ILP32 instead of LP64 by Rich Felker · 14 years ago
  98. 62275f7 news for upcoming release by Rich Felker · 14 years ago
  99. 4e30249 fix another error from header cleanup, missing size_t in time.h by Rich Felker · 14 years ago
  100. 3eb9fea fix broken signal.h from header cleanup by Rich Felker · 14 years ago