1. 26 6月, 2011 1 次提交
  2. 18 6月, 2011 1 次提交
  3. 17 6月, 2011 2 次提交
  4. 10 6月, 2011 1 次提交
    • R
      add netpacket/packet.h · 2697b4e7
      Rich Felker 提交于
      looks like busybox is going to want it, and apparently some other
      low-level network software does too...
      2697b4e7
  5. 09 6月, 2011 1 次提交
  6. 08 6月, 2011 1 次提交
  7. 07 6月, 2011 3 次提交
  8. 31 5月, 2011 1 次提交
  9. 30 5月, 2011 1 次提交
    • R
      implement pthread_[sg]etconcurrency. · ddd87b2f
      Rich Felker 提交于
      there is a resource limit of 0 bits to store the concurrency level
      requested. thus any positive level exceeds a resource limit, resulting
      in EAGAIN. :-)
      ddd87b2f
  10. 29 5月, 2011 1 次提交
  11. 08 5月, 2011 1 次提交
  12. 06 5月, 2011 1 次提交
  13. 28 4月, 2011 2 次提交
    • R
      use compiler builtins for variadic macros when available · def0af18
      Rich Felker 提交于
      this slightly cuts down on the degree musl "fights with" gcc, but more
      importantly, it fixes a critical bug when gcc inlines a variadic
      function and optimizes out the variadic arguments due to noticing that
      they were "not used" (by __builtin_va_arg).
      
      we leave the old code in place if __GNUC__ >= 3 is false; it seems
      like it might be necessary at least for tinycc support and perhaps if
      anyone ever gets around to fixing gcc 2.95.3 enough to make it work..
      def0af18
    • R
      correct variadic prototypes for execl* family · e6bac87d
      Rich Felker 提交于
      the old versions worked, but conflicted with programs which declared
      their own prototypes and generated warnings with some versions of gcc.
      e6bac87d
  14. 27 4月, 2011 1 次提交
  15. 26 4月, 2011 2 次提交
  16. 22 4月, 2011 2 次提交
  17. 21 4月, 2011 1 次提交
  18. 15 4月, 2011 3 次提交
  19. 14 4月, 2011 5 次提交
  20. 13 4月, 2011 7 次提交
  21. 12 4月, 2011 1 次提交
  22. 11 4月, 2011 1 次提交
    • R
      more types cleanup · 43b2e9bf
      Rich Felker 提交于
      the basic idea is that the only things in alltypes.h should be types
      that either vary from system to system (in practice, not just in
      theoretical la-la land - this is the implementation so we choose what
      constraints we want to impose on ports) or which are needed by
      multiple system headers.
      43b2e9bf