1. 207460d add extended attributes syscalls by Rich Felker · 12 years ago
  2. 42f0e96 add pipe2 syscall by Rich Felker · 12 years ago
  3. 845a5e6 remove scanf dependency from getaddrinfo /etc/services support by Rich Felker · 12 years ago
  4. efe72c5 getaddrinfo /etc/services lookup support by Rich Felker · 12 years ago
  5. b4f632b fix namespace issue in prototypes in math.h by Rich Felker · 12 years ago
  6. d646249 fix wrong size for sigjmp_buf signal set array by Rich Felker · 12 years ago
  7. dc046f5 add floating point register saving/restoring to mips setjmp/longjmp by Rich Felker · 12 years ago
  8. 75fff40 make getservby*_r return error code rather than -1 (and using errno) by Rich Felker · 12 years ago
  9. 68c5822 fix logic error for skipping failed interfaces in if_nameindex by Rich Felker · 12 years ago
  10. f072227 fix typo in aio.h by Rich Felker · 12 years ago
  11. 06650b9 fix getservby*() with null pointer for protocol argument by Rich Felker · 12 years ago
  12. 7be3b5a avoid blx instruction which does not exist on armv4t or armv4 by Rich Felker · 12 years ago
  13. 649cec5 make dynamic linker tell the debugger its own pathname by Rich Felker · 12 years ago
  14. 48d2013 fix broken mips a_fetch_add by Rich Felker · 12 years ago
  15. 532cd3a sigsetjmp asm for mips by Rich Felker · 12 years ago
  16. e1e4d6b mipsel (little endian) support by Rich Felker · 12 years ago
  17. 9610756 workaround another sendmsg kernel bug on 64-bit machines by Rich Felker · 12 years ago
  18. 90e123f fix redef of sigprocmask constants on mips by Rich Felker · 12 years ago
  19. a1546e8 disable dynamic linking on mips for now (broken) by Rich Felker · 12 years ago
  20. ba8a96b more mips bits-header fixes by Rich Felker · 12 years ago
  21. db11e96 fix mips syscalls with long long args by Rich Felker · 12 years ago
  22. bbbe87e fix several locks that weren't updated right for new futex-based __lock by Rich Felker · 12 years ago
  23. c89f130 fix pthread_kill unlocking by Rich Felker · 12 years ago
  24. ea4175e fix breakage of x86_64 sigaction from recent changes for mips by Rich Felker · 12 years ago
  25. 5fac93d fix mips mcontext_t structure size by Rich Felker · 12 years ago
  26. 92f8396 fix potential race condition in detached threads by Rich Felker · 12 years ago
  27. a03f69d mips clone: don't free stack space used to copy arg by Rich Felker · 12 years ago
  28. b58f738 fix mips clone() on real linux kernel by Rich Felker · 12 years ago
  29. 2b3cc04 fix MAP_ANONYMOUS value for mips, remove cruft copied from i386 by Rich Felker · 12 years ago
  30. 715b640 fix clone() on mips (args were in wrong order) by Rich Felker · 12 years ago
  31. 5c94367 first attempt at making threads work on mips by Rich Felker · 12 years ago
  32. d0bfbd9 generic c version of __set_thread_area for archs where it works by Rich Felker · 12 years ago
  33. 6315004 initial version of mips (o32) port, based on work by Richard Pennington (rdp) by Rich Felker · 12 years ago
  34. cd8d724 remove unused var in new sigaction code by Rich Felker · 12 years ago
  35. 5091e08 use unsigned bitmask for consistency in ksigaction by Rich Felker · 12 years ago
  36. 0b63779 fix breakage from last commit: forgot to include ksigaction.h by Rich Felker · 12 years ago
  37. fcaec91 changes to kernel sigaction struct handling in preparation for mips port by Rich Felker · 12 years ago
  38. e864a29 make dynamic linker depend on -DSHARED not -fPIC by Rich Felker · 12 years ago
  39. 0420b87 fix lots of breakage on dlopen, mostly with explicit pathnames by Rich Felker · 12 years ago
  40. bd1cf09 support -mfpmath=387 on x86_64 by Rich Felker · 12 years ago
  41. 59c4ead fix wrong value of FLT_EVAL_METHOD for x86_64 by Rich Felker · 12 years ago
  42. 8bbc3be make arm syscalls (still non-inline) more efficient by Rich Felker · 12 years ago
  43. a3bdcd9 remove little-endian assumption from arm atomic.h by Rich Felker · 12 years ago
  44. d93e028 fix dlsym RTLD_NEXT support by Rich Felker · 12 years ago
  45. 920baab putw is supposed to return 0 (not the value written) on success by Rich Felker · 12 years ago
  46. 98eddc6 make sure getw/putw agree with prototypes by defining _GNU_SOURCE by Rich Felker · 12 years ago
  47. 25b88f0 add prototypes for getw/putw by Rich Felker · 12 years ago
  48. 2121b8a configure: only use -ffloat-store on i386 by Rich Felker · 12 years ago
  49. d6c0efe jmp_buf overhaul fixing several issues by Rich Felker · 12 years ago
  50. e6129e6 fix sigsetjmp on arm (needs asm) by Rich Felker · 12 years ago
  51. 8e26a59 fix missing function declarations for __stdio_exit by Rich Felker · 12 years ago
  52. 007c03f fix missing prototype and simplify sincosl on ld64 archs by Rich Felker · 12 years ago
  53. fe2df4a fix invalid implicit pointer conversion in ld64 modfl by Rich Felker · 12 years ago
  54. cdf5150 replace old and ugly crypt implementation by Rich Felker · 12 years ago
  55. 9abab94 fix arm crti/crtn code by Rich Felker · 12 years ago
  56. ec820f1 release notes for 0.9.2 by Rich Felker · 12 years ago
  57. 9cf9c39 add process_vm_readv and process_vm_writev syscall wrappers by Rich Felker · 12 years ago
  58. 213db3e update syscall defs to latest kernel ones by Rich Felker · 12 years ago
  59. 4e8b093 proper error handling for fcntl F_GETOWN on modern kernels by Rich Felker · 12 years ago
  60. e5fb682 math: fix fma bug on x86 (found by Bruno Haible with gnulib) by nsz · 12 years ago
  61. ac4fb51 fix broken wcwidth tables by Rich Felker · 12 years ago
  62. fad231b support ld80 pseudo-denormal invalid bit patterns; treat them as nan by Rich Felker · 12 years ago
  63. c21a19d fix ptsname_r to conform to the upcoming posix requirements by Rich Felker · 12 years ago
  64. cea106f fix fwrite return value when full write does not succeed by Rich Felker · 12 years ago
  65. 1af8c25 avoid cancellation in pclose by Rich Felker · 12 years ago
  66. 9799560 fix invalid memory access in pclose by Rich Felker · 12 years ago
  67. 9c21f43 make popen cancellation-safe by Rich Felker · 12 years ago
  68. f305467 popen: handle issues with fd0/1 being closed by Rich Felker · 12 years ago
  69. b3d7d06 duplocale: don't crash when called with LC_GLOBAL_LOCALE by Rich Felker · 12 years ago
  70. f313a16 make strerror_r behave nicer on failure by Rich Felker · 12 years ago
  71. 839bff6 fix another oob pointer arithmetic issue in printf floating point by Rich Felker · 12 years ago
  72. 82a4499 minor perror behavior fix by Rich Felker · 12 years ago
  73. 85a3ba3 fix localeconv values and implementation by Rich Felker · 12 years ago
  74. ee96c50 fix mistake in length test in getlogin_r by Rich Felker · 12 years ago
  75. ee1f69a fix dummied-out fsync by Rich Felker · 12 years ago
  76. ca1773d fix dummied-out fdatasync by Rich Felker · 12 years ago
  77. 914949d fix pointer overflow bug in floating point printf by Rich Felker · 12 years ago
  78. 25c8444 add vhangup syscall wrapper by Rich Felker · 12 years ago
  79. 5bc8e84 include declarations for new stdio_ext functions (gnulib support) by Rich Felker · 12 years ago
  80. e15171b add new stdio extension functions to make gnulib happy by Rich Felker · 12 years ago
  81. a71e0af stdio: handle file position correctly at program exit by Rich Felker · 12 years ago
  82. ca8a4e7 minor cleanup in fflush by Rich Felker · 12 years ago
  83. 2499cd9 remove flush hook cruft that was never used from stdio by Rich Felker · 12 years ago
  84. 26710be fix multiple iconv bugs reading utf-16/32 and wchar_t by Rich Felker · 12 years ago
  85. 673633c fix iconv dest utf-16: unavailable chars must be replaced; EILSEQ is wrong by Rich Felker · 12 years ago
  86. a2f149b fix erroneous utf-16 encoding with surrogates in iconv by Rich Felker · 12 years ago
  87. deb90c7 change stdio_ext __freading/__fwriting semantics slightly by Rich Felker · 12 years ago
  88. 3b43d10 fdopen should set errno when it fails due to invalid mode string by Rich Felker · 12 years ago
  89. 57d5fff header file fixes: multiple include guard consistency and correctness by Rich Felker · 12 years ago
  90. 1dd6eee direct syscall to open in __init_security needs O_LARGEFILE by Rich Felker · 12 years ago
  91. ad5a332 reorder exit code to defer stdio flush until after dtors by Rich Felker · 12 years ago
  92. de05a2a revert one change in time.h; no evidence BSD_SOURCE should expose these.. by Rich Felker · 12 years ago
  93. cf254c3 fix feature test macros in time.h by Rich Felker · 12 years ago
  94. 23be72a add timegm function (inverse of gmtime), nonstandard by Rich Felker · 12 years ago
  95. 2169265 add init_module/delete_module syscall wrappers by Rich Felker · 12 years ago
  96. fbffcee add (currently stubbed due to stubbed strverscmp) versionsort function by Rich Felker · 12 years ago
  97. e361019 add deprecated capabilities functions by Rich Felker · 12 years ago
  98. 6343ac8 fix char signedness bug (arm-specific) in dynamic linker by Rich Felker · 12 years ago
  99. 819006a add pthread_attr_setstack interface (and get) by Rich Felker · 12 years ago
  100. f457b1c fix scanning of "-0x" pseudo-hex float (must give negative zero) by Rich Felker · 12 years ago