1. 1ef849c allow libc itself to be built with stack protector enabled by Rich Felker · 10 years ago
  2. 19a1fe6 remove remnants of support for running in no-thread-pointer mode by Rich Felker · 10 years ago
  3. 71f099c move thread pointer setup to beginning of dynamic linker stage 3 by Rich Felker · 10 years ago
  4. 0f66fce stabilize dynamic linker's layout of static TLS by Rich Felker · 10 years ago
  5. f630df0 allow i386 __set_thread_area to be called more than once by Rich Felker · 10 years ago
  6. f3ddd17 dynamic linker bootstrap overhaul by Rich Felker · 10 years ago
  7. 385c011 remove mismatched arguments from vmlock function definitions by Rich Felker · 10 years ago
  8. a2d3053 apply vmlock wait to __unmapself in pthread_exit by Rich Felker · 10 years ago
  9. f08ab9e redesign and simplify vmlock system by Rich Felker · 10 years ago
  10. 4e98cce optimize out setting up robust list with kernel when not needed by Rich Felker · 10 years ago
  11. 12e1e32 process robust list in pthread_exit to fix detached thread use-after-unmap by Rich Felker · 10 years ago
  12. 25748db fix possible clobbering of syscall return values on mips by Rich Felker · 10 years ago
  13. 05e0e30 fix getdelim to set the error indicator on all failures by Szabolcs Nagy · 10 years ago
  14. 0770962 fix rpath string memory leak on failed dlopen by Rich Felker · 10 years ago
  15. 2963a9f halt dynamic linker library search on errors resolving $ORIGIN in rpath by Rich Felker · 10 years ago
  16. 5e25d87 remove macro definition of longjmp from setjmp.h by Rich Felker · 10 years ago
  17. 5d1c8c9 harden dynamic linker library path search by Rich Felker · 10 years ago
  18. fd427c4 move O_PATH definition back to arch bits by Rich Felker · 10 years ago
  19. abfe1f6 aarch64: remove duplicate macro definitions in bits/fcntl.h by Rich Felker · 10 years ago
  20. dfc1a37 aarch64: fix definition of sem_nsems in semid_ds structure by Rich Felker · 10 years ago
  21. b24d813 aarch64: fix namespace pollution in bits/shm.h by Szabolcs Nagy · 10 years ago
  22. 115af23 release 1.1.8 by Rich Felker · 10 years ago
  23. c498efe regex: fix character class repetitions by Szabolcs Nagy · 10 years ago
  24. 32dee9b do not treat \0 as a backref in BRE by Szabolcs Nagy · 10 years ago
  25. 11d1e2e fix FLT_ROUNDS regression in C++ applications by Rich Felker · 10 years ago
  26. fc13acc fix internal buffer overrun in inet_pton by Rich Felker · 10 years ago
  27. 7c8c86f suppress backref processing in ERE regcomp by Rich Felker · 10 years ago
  28. 39dfd58 fix memory-corruption in regcomp with backslash followed by high byte by Rich Felker · 10 years ago
  29. e626dee fix missing max_align_t definition on aarch64 by Rich Felker · 10 years ago
  30. 8c1c57a release 1.1.7 by Rich Felker · 10 years ago
  31. d5a5045 fix MINSIGSTKSZ values for archs with large signal contexts by Rich Felker · 10 years ago
  32. 76fd011 block all signals (even internal ones) in cancellation signal handler by Rich Felker · 10 years ago
  33. eceaf1d update authors/contributors list by Rich Felker · 10 years ago
  34. 4b5ca13 avoid sending huge names as nscd passwd/group queries by Rich Felker · 10 years ago
  35. 49d1e7f simplify nscd lookup code for alt passwd/group backends by Rich Felker · 10 years ago
  36. 2894a44 add alternate backend support for getgrouplist by Josiah Worcester · 10 years ago
  37. 962cbfb aarch64: fix typo in bits/ioctl.h by Szabolcs Nagy · 10 years ago
  38. 38bf2d7 aarch64: add struct _aarch64_ctx to signal.h by Szabolcs Nagy · 10 years ago
  39. 673cab5 align x32 pthread type sizes to be common with 32-bit archs by Rich Felker · 10 years ago
  40. 01ef3dd add aarch64 port by Szabolcs Nagy · 10 years ago
  41. f4e4632 math: add dummy implementations of 128 bit long double functions by Szabolcs Nagy · 10 years ago
  42. 53cfe0c math: add ld128 exp2l based on the freebsd implementation by Szabolcs Nagy · 10 years ago
  43. 204a69d copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archs by Szabolcs Nagy · 10 years ago
  44. a46677a fix regression in pthread_cond_wait with cancellation disabled by Rich Felker · 10 years ago
  45. 559de8f fix FLT_ROUNDS to reflect the current rounding mode by Szabolcs Nagy · 10 years ago
  46. bd67959 fix over-alignment of TLS, insufficient builtin TLS on 64-bit archs by Rich Felker · 10 years ago
  47. 2b42c8c add legacy functions from sysinfo.h duplicating sysconf functionality by Rich Felker · 10 years ago
  48. 380857b fix signed left-shift overflow in pthread_condattr_setpshared by Rich Felker · 10 years ago
  49. ad85fcb add new si_lower and si_upper siginfo_t members by Szabolcs Nagy · 10 years ago
  50. 9c3da89 declare incomplete type struct itimerspec in timerfd.h by Rich Felker · 10 years ago
  51. 91a3bd7 fix preprocessor error introduced in poll.h in last commit by Rich Felker · 10 years ago
  52. f5011c6 fix POLLWRNORM and POLLWRBAND on mips by Trutz Behn · 10 years ago
  53. e7b9887 fix x32 pthread type definitions by Rich Felker · 10 years ago
  54. 064898c remove useless check of bin match in malloc by Rich Felker · 10 years ago
  55. 6de071a eliminate atomics in syslog setlogmask function by Rich Felker · 10 years ago
  56. 7a81fe3 fix init race that could lead to deadlock in malloc init code by Rich Felker · 10 years ago
  57. 56fbaa3 make all objects used with atomic operations volatile by Rich Felker · 10 years ago
  58. eb4bd8d suppress masked cancellation in pthread_join by Rich Felker · 10 years ago
  59. a3de8f7 fix namespace issue in pthread_join affecting thrd_join by Rich Felker · 10 years ago
  60. 5451d95 make aio_suspend a cancellation point and properly handle cancellation by Rich Felker · 10 years ago
  61. 0fc317d factor cancellation cleanup push/pop out of futex __timedwait function by Rich Felker · 10 years ago
  62. 76ca7a5 fix failure of internal futex __timedwait to report ECANCELED by Rich Felker · 10 years ago
  63. e346ff8 overhaul optimized x86_64 memset asm by Rich Felker · 10 years ago
  64. 69858fa overhaul optimized i386 memset asm by Rich Felker · 10 years ago
  65. 20cbd60 getloadavg: use sysinfo() instead of /proc/loadavg by Alexander Monakov · 10 years ago
  66. 2de85a9 fix possible isatty false positives and unwanted device state changes by Rich Felker · 10 years ago
  67. e487c20 fix breakage in pthread_cond_wait due to typo by Rich Felker · 10 years ago
  68. 34b423d support alternate backends for the passwd and group dbs by Josiah Worcester · 10 years ago
  69. 0afef1a fix spurious errors in refactored passwd/group code by Rich Felker · 10 years ago
  70. fc5a96c fix crashes in refactored passwd/group code by Rich Felker · 10 years ago
  71. d9da1fb simplify cond var code now that cleanup handler is not needed by Rich Felker · 10 years ago
  72. 8741ffe fix pthread_cond_wait cancellation race by Rich Felker · 10 years ago
  73. 102f6a0 add new masked cancellation mode by Rich Felker · 10 years ago
  74. f409338 prepare cancellation syscall asm for possibility of __cancel returning by Rich Felker · 10 years ago
  75. 6bea5dc map interruption of close by signal to success rather than EINPROGRESS by Rich Felker · 10 years ago
  76. 36d8e97 make pthread_exit responsible for disabling cancellation by Rich Felker · 10 years ago
  77. fd850de fix type error (arch-dependent) in new aio code by Rich Felker · 10 years ago
  78. 7c5f0a5 refactor group file access code by Josiah Worcester · 10 years ago
  79. 4e8a356 overhaul aio implementation for correctness by Rich Felker · 10 years ago
  80. 594ffed fix bad character checking in wordexp by Rich Felker · 10 years ago
  81. 700e089 refactor passwd file access code by Josiah Worcester · 10 years ago
  82. 74e334d x86_64/memset: avoid performing final store twice by Denys Vlasenko · 10 years ago
  83. bf2071e x86_64/memset: simple optimizations by Denys Vlasenko · 10 years ago
  84. 6a5242e make protocol table zero byte separated and add ipv6 protocols by Timo Teräs · 10 years ago
  85. f54c28c add syscall numbers for the new execveat syscall by Szabolcs Nagy · 10 years ago
  86. 70572dc add new socket options SO_INCOMING_CPU, SO_ATTACH_BPF, SO_DETACH_BPF by Szabolcs Nagy · 10 years ago
  87. 339cc25 use the internal macro name FUTEX_PRIVATE in __wait by Szabolcs Nagy · 10 years ago
  88. f3f2979 add IEEE binary128 long double support to floatscan by Szabolcs Nagy · 10 years ago
  89. 018f9df math: fix fmodl for IEEE binary128 by Szabolcs Nagy · 10 years ago
  90. 04d522c simplify armhf fesetenv by Szabolcs Nagy · 10 years ago
  91. 5fc1487 fix fesetenv(FE_DFL_ENV) on mips by Szabolcs Nagy · 10 years ago
  92. 3f92f92 math: fix __fpclassifyl(-0.0) for IEEE binary128 by Szabolcs Nagy · 10 years ago
  93. 6e76e15 add parenthesis in fma.c to clarify intent and silence warnings by Szabolcs Nagy · 10 years ago
  94. c63c98a make getaddrinfo support SOCK_RAW and other socket types by Rich Felker · 10 years ago
  95. e63833c remove cruft from x86_64 syscall.h by Szabolcs Nagy · 10 years ago
  96. 61b1d10 fix failure of fchmodat to report EOPNOTSUPP in the race path by Rich Felker · 10 years ago
  97. 2736eb6 fix fd leak race (missing O_CLOEXEC) in fchmodat by Rich Felker · 10 years ago
  98. 14a0117 make execvp continue PATH search on EACCES rather than issuing an errror by Rich Felker · 10 years ago
  99. 3559f0b fix missing memory barrier in cancellation signal handler by Rich Felker · 10 years ago
  100. 4758f05 fix typo in x86_64/x32 user_fpregs_struct by Felix Janda · 10 years ago