1. a949257 remove incorrectly-made-visible internal dst offset variable by Rich Felker · 13 years ago
  2. 7c131a3 fix inconsistent signature for aio_error by Rich Felker · 13 years ago
  3. 4da289e fix return types for aio_read and aio_write again by Rich Felker · 13 years ago
  4. 13cd969 fix various errors in function signatures/prototypes found by nsz by Rich Felker · 13 years ago
  5. 0f1ef81 add missing posix_spawnattr_init/destroy functions by Rich Felker · 13 years ago
  6. 28af39f remove some stray trailing space characters by Rich Felker · 13 years ago
  7. fb80e04 implement gnu sigisemptyset by Rich Felker · 13 years ago
  8. a654017 add dummied strverscmp (obnoxious GNU function) by Rich Felker · 13 years ago
  9. 8fe5fa5 fix serious bug in pthread_join by Rich Felker · 13 years ago
  10. eb351a9 fix pthread_join wait call: thread termination tid futex is not private by Rich Felker · 13 years ago
  11. b4de6f9 implement POSIX asynchronous io by Rich Felker · 13 years ago
  12. 96cea94 fix incorrect overflow errors on strtoul, etc. by Rich Felker · 13 years ago
  13. 5989dde strptime: fix use of uninitialized dest field in converting integer by Rich Felker · 13 years ago
  14. d2e061a more fmemopen null termination fixes by Rich Felker · 13 years ago
  15. e72ee57 fix some fmemopen behaviors by Rich Felker · 13 years ago
  16. a7778da handle pending cancellation when enabling async cancellation by Rich Felker · 13 years ago
  17. 22e4542 fmemopen: fix eof handling, hopefully right this time by Rich Felker · 13 years ago
  18. f81279f fmemopen fixes by Rich Felker · 13 years ago
  19. 7ee3dcb memstreams: fix incorrect handling of file pos > current size by Rich Felker · 13 years ago
  20. c88f36f optimize seek function for memory streams by Rich Felker · 13 years ago
  21. 32d67e9 fix twos complement overflow bug in mem streams boundary check by Rich Felker · 13 years ago
  22. d4fa6f0 implement fmemopen by Rich Felker · 13 years ago
  23. 1e69376 fix some length calculations in memory streams by Rich Felker · 13 years ago
  24. 1461e02 implement open_wmemstream by Rich Felker · 13 years ago
  25. ad70ba7 fix RTLD_NEXT on x86_64 by Rich Felker · 13 years ago
  26. b158b32 implement open_memstream by Rich Felker · 13 years ago
  27. adb7093 fix missing prototypes/wrong signature for psiginfo, psignal by Rich Felker · 13 years ago
  28. 291666a bring back ___environ symbol (3 underscores) by Rich Felker · 13 years ago
  29. 1c8bead use new a_crash() asm to optimize double-free handler. by Rich Felker · 13 years ago
  30. df0b5a4 security hardening: ensure suid programs have valid stdin/out/err by Rich Felker · 13 years ago
  31. c0f3441 in pathconf, -1, not 0, means unsupported.. syncio presumably works, too. by Rich Felker · 13 years ago
  32. 3e082df fix bogus pathconf result for file size bits by Rich Felker · 13 years ago
  33. 47a8816 partially working strptime by Rich Felker · 13 years ago
  34. cf8506a ldso: move the suid/secure check code closer to env/auxv processing by Rich Felker · 13 years ago
  35. a045883 honor AT_SECURE aux vector flag by Rich Felker · 13 years ago
  36. 623753a RTLD_NEXT support by Rich Felker · 13 years ago
  37. 2719cc8 LD_PRELOAD support by Rich Felker · 13 years ago
  38. ce7c634 simplify and improve double-free check by Rich Felker · 13 years ago
  39. 9205e48 macro for pthread_equal by Rich Felker · 13 years ago
  40. ef9dd03 fix missing include in last commit by Rich Felker · 13 years ago
  41. ad57598 fix clock() function by Rich Felker · 13 years ago
  42. 4054a13 implement forkall by Rich Felker · 13 years ago
  43. 407d933 pthread and synccall cleanup, new __synccall_wait op by Rich Felker · 13 years ago
  44. b1a7102 more efficient signal blocking for timer threads by Rich Felker · 13 years ago
  45. 8b625e4 normal exit from timer thread should run dtors, restore cancel state by Rich Felker · 13 years ago
  46. c516807 block signals in timer threads by Rich Felker · 13 years ago
  47. 1407785 condition variable signal/bcast need not wake unless there are waiters by Rich Felker · 13 years ago
  48. cdfb725 use weak aliase rather than weak reference for vdso clock_gettime by Rich Felker · 13 years ago
  49. b3c08a1 simplify unified timed wait code, drop support for newer method by Rich Felker · 13 years ago
  50. b2b95a5 add fast path for normal mutexes back to pthread_mutex_lock by Rich Felker · 13 years ago
  51. 188ebf5 close should not be cancellable after "failing" with EINTR by Rich Felker · 13 years ago
  52. 3578760 simplify multi-threaded errno, eliminate useless function pointer by Rich Felker · 13 years ago
  53. 98acf04 use weak aliases rather than function pointers to simplify some code by Rich Felker · 13 years ago
  54. 338b663 fix off-by-one bug in siglongjmp that caused unpredictable behavior by Rich Felker · 13 years ago
  55. 5f37fc1 further debloat cancellation handlers by Rich Felker · 13 years ago
  56. 56385dd missed detail in cancellation bloat fix by Rich Felker · 13 years ago
  57. 730bee7 fix static linking dependency bloat with cancellation by Rich Felker · 13 years ago
  58. fc0ecd3 implement if_nameindex and if_freenameindex by Rich Felker · 13 years ago
  59. 50304f2 overhaul rwlocks to address several issues by Rich Felker · 13 years ago
  60. 8aeee8d timedwait: play it safe for now by Rich Felker · 13 years ago
  61. 4f5ba92 fix stubbed-out reboot call by Rich Felker · 13 years ago
  62. 4717bfe correctly handle old kernels without FUTEX_WAIT_BITSET by Rich Felker · 13 years ago
  63. bdd8933 fix sem_timedwait bug introduced in timedwait unification by Rich Felker · 13 years ago
  64. ec381af unify and overhaul timed futex waits by Rich Felker · 13 years ago
  65. c68de0b avoid accessing mutex memory after atomic unlock by Rich Felker · 13 years ago
  66. 344ea14 fix breakage in cancellation due to signal functions overhaul by Rich Felker · 13 years ago
  67. 88c4e72 overhaul posix semaphores to fix destructability race by Rich Felker · 13 years ago
  68. 8879839 fix wrong messages in gai_strerror by Rich Felker · 13 years ago
  69. f4e8e64 port numbers should always be interpreted as decimal by Rich Felker · 13 years ago
  70. e95b0a9 fix crash in dns code with new stdio locking code by Rich Felker · 13 years ago
  71. 07827d1 fix race condition in sigqueue by Rich Felker · 13 years ago
  72. ad58818 clean up pthread_sigmask/sigprocmask dependency order by Rich Felker · 13 years ago
  73. 544ee75 fix some bugs in setxid and update setrlimit to use __synccall by Rich Felker · 13 years ago
  74. dba68bf add proper fuxed-based locking for stdio by Rich Felker · 13 years ago
  75. 7683fce eliminate dependence of perror on printf by Rich Felker · 13 years ago
  76. 7dd60b8 fix bug in synccall with no threads: lock was taken but never released by Rich Felker · 13 years ago
  77. afade23 add setxid.c for new set*id() framework. missed in last commit. by Rich Felker · 13 years ago
  78. acb0480 new attempt at making set*id() safe and robust by Rich Felker · 13 years ago
  79. aed707f remove ugly prng from mk*temp and just re-poll time on retry by Rich Felker · 13 years ago
  80. bbdcc40 eliminate mk*temp dependency on snprintf by Rich Felker · 13 years ago
  81. 649af9f fix for setenv bogus var argument handling by Rich Felker · 13 years ago
  82. e01ac67 when resolving symbols with only weak defs, use first def, not last def by Rich Felker · 13 years ago
  83. dd92a09 comment non-obvious de bruijn sequence code in int parser by Rich Felker · 13 years ago
  84. 427173b fix resolution of weak symbols (hopefully right now) and vdso by Rich Felker · 13 years ago
  85. e91c375 workaround for gcc's optimizer breaking dynamic symbol resolution by Rich Felker · 13 years ago
  86. 6ab444d load vdso, if present, into the dso list by Rich Felker · 13 years ago
  87. f7adc39 const correctness on function pointer by Rich Felker · 13 years ago
  88. a53de81 simplify dynamic linker startup by Rich Felker · 13 years ago
  89. e3eb493 some preliminaries for vdso clock support by Rich Felker · 13 years ago
  90. c0fe5b9 check for fd exhaustion in forkpty by Rich Felker · 13 years ago
  91. d40e344 incorrect check for open failure in openpty function by Rich Felker · 13 years ago
  92. fa84566 fix errno value when fdopendir is given an invalid file descriptor by Rich Felker · 13 years ago
  93. 4ec07e1 ensure in fork that child gets its own new robust mutex list by Rich Felker · 13 years ago
  94. 94a0171 fix logic error in fread by Rich Felker · 13 years ago
  95. 47d027e fix various bugs in new integer parser framework by Rich Felker · 13 years ago
  96. d3fd192 fix wcsto[iu]max with high characters by Rich Felker · 13 years ago
  97. ecc9c5f new restartable integer parsing framework. by Rich Felker · 13 years ago
  98. 0e2331c gb18030 support in iconv (only from, not to) by Rich Felker · 13 years ago
  99. c3c5e88 "implement" getnetbyaddr and getnetbyname by Rich Felker · 13 years ago
  100. 95a85e0 legacy japanese charset support in iconv (only from, not to) by Rich Felker · 13 years ago