1. 682a0f2 fix failure behavior of sem_open when sem does not exist by Rich Felker · 13 years ago
  2. cfe581b fix some semaphore wait semantics (race condition deadlock and error checking) by Rich Felker · 13 years ago
  3. 81af503 fix sem_open and sem_close to obey posix semantics by Rich Felker · 13 years ago
  4. 5fcebcd optimize pthread termination in the non-detached case by Rich Felker · 13 years ago
  5. dc54a7c fix errors in sigqueue (potential information leak, wrong behavior) by Rich Felker · 13 years ago
  6. 52213f7 security fix: check that cancel/rsyscall signal was sent by the process itself by Rich Felker · 13 years ago
  7. 11dbbe9 more cancellation points: tcdrain, clock_nanosleep by Rich Felker · 13 years ago
  8. c8c4ef7 remove useless return value checks for functions that cannot fail by Rich Felker · 13 years ago
  9. 0f8cc94 make sigsuspend a cancellation point by Rich Felker · 13 years ago
  10. 5b9429a make sigtimedwait a cancellation point by Rich Felker · 13 years ago
  11. 0a949eb don't fail with EINTR in sigtimedwait by Rich Felker · 13 years ago
  12. 0558683 fix sigsuspend syscall by Rich Felker · 13 years ago
  13. 6871fd7 make sigaltstack work (missing macros in signal.h, error conditions) by Rich Felker · 13 years ago
  14. 1b538ac fix errno behavior in clock_* functions by Rich Felker · 13 years ago
  15. 500c969 fix error handling for pthread_sigmask by Rich Felker · 13 years ago
  16. 3f5420b make fork properly initialize the main thread in the child process by Rich Felker · 13 years ago
  17. 6dc05fb optimize pthread initialization by Rich Felker · 13 years ago
  18. 0bed7e0 fix race condition in raise - just mask signals by Rich Felker · 13 years ago
  19. 370f78f fix raise semantics with threads. by Rich Felker · 13 years ago
  20. 91f7db2 fix typos in dirent.h by Rich Felker · 13 years ago
  21. ac12eb9 fcntl.h should make availabel the mode constants from sys/stat.h by Rich Felker · 13 years ago
  22. 31e0607 simplify and optimize pthread_mutex_trylock by Rich Felker · 13 years ago
  23. e5dd183 rwlock trylock functions were wrongly returning EAGAIN instead of EBUSY by Rich Felker · 13 years ago
  24. 7e6be42 fix major breakage in pthread_once (it was always deadlocking) by Rich Felker · 13 years ago
  25. 4820f92 fix and optimize non-default-type mutex behavior by Rich Felker · 13 years ago
  26. 1d6b1f1 implement pthread_mutexattr_[gs]etpshared functions by Rich Felker · 13 years ago
  27. 9d5251f disallow cpu time clocks as condattr clock values by Rich Felker · 13 years ago
  28. 5d0d6d9 add macros for use with d_type extension field in dirent by Rich Felker · 13 years ago
  29. 9fe28f7 fix off-by-one error in sem_(timed)wait (using old sem value instead of new) by Rich Felker · 13 years ago
  30. 5fd4a98 use the selected clock from the condattr for pthread_cond_timedwait by Rich Felker · 13 years ago
  31. 7d57e05 add prototypes for pthread_condattr_* and pthread_rwlockattr_* by Rich Felker · 13 years ago
  32. cc2e0b4 implement pthread_rwlockattr_* (essentially no-ops) by Rich Felker · 13 years ago
  33. b4d40e4 implement pthread_condattr_* interfaces by Rich Felker · 13 years ago
  34. 63b06c0 reject invalid attribute settings by Rich Felker · 13 years ago
  35. 951e764 implement barrier attribute functions (essentially no-ops) by Rich Felker · 13 years ago
  36. 8c967b9 enforce stack size min in pthread_attr_setstacksize by Rich Felker · 13 years ago
  37. 6fc5fdb implement POSIX semaphores by Rich Felker · 13 years ago
  38. 03dcc34 preliminaries to adding POSIX semaphores by Rich Felker · 13 years ago
  39. b480808 optimize POSIX TSD for fast pthread_getspecific by Rich Felker · 13 years ago
  40. a53d2f3 namespace cleanup in sys/mman.h by Rich Felker · 13 years ago
  41. ebd7af6 implement POSIX shared memory by Rich Felker · 13 years ago
  42. 71df8b2 use -L/...../ -lgcc instead of /...../libgcc.a in musl-gcc wrapper by Rich Felker · 14 years ago
  43. 07e9d63 depends on settimeofday which needs _GNU_SOURCE feature test by Rich Felker · 14 years ago
  44. eda8e9d implement futimens and utimensat by Rich Felker · 14 years ago
  45. b1b465c cleanup namespace in sys/time.h by Rich Felker · 14 years ago
  46. f2374ed implement fexecve by Rich Felker · 14 years ago
  47. 015d33c cleanup utf-8 multibyte code, use visibility if possible by Rich Felker · 14 years ago
  48. 2a195dd fix missing prototype for strsignal by Rich Felker · 14 years ago
  49. 41d5183 various changes in preparation for dynamic linking support by Rich Felker · 14 years ago
  50. 73d310e apply feature test protection to memccpy by Rich Felker · 14 years ago
  51. b8ff2aa add implementation of memccpy function by Rich Felker · 14 years ago
  52. 9f19b3e fix backwards conditional in stpncpy by Rich Felker · 14 years ago
  53. a6238c3 rewind must clear the error indicator in addition to seeking by Rich Felker · 14 years ago
  54. 71e6be6 change errno to static linkage (improves PIC code generation) by Rich Felker · 14 years ago
  55. 8cd48f0 cleanup comment cruft in startup code by Rich Felker · 14 years ago
  56. e2ee1bd make startup code PIE-compatible by Rich Felker · 14 years ago
  57. cfcbea1 remove sample utf-8 code that's not part of the standard library by Rich Felker · 14 years ago
  58. d89c9e8 use an accessor function for __libc data pointer when compiled as PIC by Rich Felker · 14 years ago
  59. 4ee039f avoid referencing address of extern function from vdprintf by Rich Felker · 14 years ago
  60. ba68efc shave off 2 bytes from crt1.o _start by Rich Felker · 14 years ago
  61. 3075f7e cleanup asprintf stuff by Rich Felker · 14 years ago
  62. 46b9942 prototypes for GNU asprintf/vasprintf by Rich Felker · 14 years ago
  63. bdc9ed1 fix %n specifier, again. this time it was storing the wrong value. by Rich Felker · 14 years ago
  64. f552c79 include sys/sysmacros.h from sys/types.h when _GNU_SOURCE is defined by Rich Felker · 14 years ago
  65. b1b7523 fix typo in inotify structure by Rich Felker · 14 years ago
  66. 26031da make malloc(0) return unique pointers rather than NULL by Rich Felker · 14 years ago
  67. 598a014 fix simple_malloc malloc(0) behavior not to return non-unique pointers by Rich Felker · 14 years ago
  68. a23baf5 fix simple_malloc size restrictions by Rich Felker · 14 years ago
  69. 96f2197 fix null pointer dereference introduced in last sigprocmask commit by Rich Felker · 14 years ago
  70. eee150f make real symbols for the legacy (nonstandardized) utmp functions by Rich Felker · 14 years ago
  71. d6a1e0c resolve some header namespace non-issues by Rich Felker · 14 years ago
  72. 855df69 move the GNU siginfo renaming so it doesn't lead to mismatching names by Rich Felker · 14 years ago
  73. 8668f03 fill in some missing siginfo stuff in signal.h by Rich Felker · 14 years ago
  74. 2b43ef8 make sys/param.h not depend on PATH_MAX and NAME_MAX by Rich Felker · 14 years ago
  75. 13e8459 workaround gcc bug 46926 by providing a dumb sincos implementation by Rich Felker · 14 years ago
  76. 98e0214 use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit code by Rich Felker · 14 years ago
  77. 5316d08 fix typo in wordexp.h (note that the function is still unimplemented) by Rich Felker · 14 years ago
  78. 4b1244a implement the remaining clock_* interfaces by Rich Felker · 14 years ago
  79. 19eb13b race condition fix: block all signals before decrementing thread count by Rich Felker · 14 years ago
  80. a49c119 prevent sigprocmask/pthread_sigmask from blocking implementation signals by Rich Felker · 14 years ago
  81. fb11b6b make pthread_exit run dtors for last thread, wait to decrement thread count by Rich Felker · 14 years ago
  82. 69ecbd0 make mktemp match the historic behavior, and update functions that use it by Rich Felker · 14 years ago
  83. 2e6239d fix major bug created from copying mkdtemp logic by Rich Felker · 14 years ago
  84. 095a5ae add syscall wrappers for inotify by Rich Felker · 14 years ago
  85. cc2a822 cleanup cruft left from when kernel and user time_t disagreed by Rich Felker · 14 years ago
  86. 52874c8 prototype wait3 and wait4 by Rich Felker · 14 years ago
  87. f3ef7a6 add missing WIFCONTINUED macro and improve WIFSIGNALED by Rich Felker · 14 years ago
  88. b386d81 prototypes for brk and sbrk by Rich Felker · 14 years ago
  89. ad2fe25 support the ugly and deprecated ucontext and sigcontext header stuff... by Rich Felker · 14 years ago
  90. e9417ff add pthread_atfork interface by Rich Felker · 14 years ago
  91. 446b420 major improvements to temp file name generator by Rich Felker · 14 years ago
  92. 3e9e301 reformat mkstemp like mkdtemp by Rich Felker · 14 years ago
  93. d5ca067 add portable lchown (trivial to support and a few ancient things want it..) by Rich Felker · 14 years ago
  94. 982a478 prepare WHATSNEW for release by Rich Felker · 14 years ago
  95. 6d33335 document in config.mak sample that x86_64 is supported by Rich Felker · 14 years ago
  96. d09d068 update WHATSNEW in preparation for release by Rich Felker · 14 years ago
  97. 127ab57 avoid deleting the lib/empty file by Rich Felker · 14 years ago
  98. e882756 reorganize pthread data structures and move the definitions to alltypes.h by Rich Felker · 14 years ago
  99. 4fd1595 new solution for empty lib dir (old one had some problems) by Rich Felker · 14 years ago
  100. a36164c improve Makefile handling of git checkouts with missing lib/ and config.mak by Rich Felker · 14 years ago