Skip to content
Snippets Groups Projects
  1. Jul 10, 2017
  2. Jul 09, 2017
  3. Jul 03, 2017
  4. Jul 02, 2017
  5. Jun 27, 2017
  6. Jun 24, 2017
  7. Jun 15, 2017
  8. Apr 25, 2017
  9. Apr 24, 2017
  10. Apr 21, 2017
  11. Apr 20, 2017
  12. Apr 19, 2017
  13. Mar 01, 2017
  14. Feb 21, 2017
    • Zac Berkowitz's avatar
      Moved linux baud constants into individual archs. · 1a9112d2
      Zac Berkowitz authored
      Having the B* constants in `unix/notbsd/mod.rs` passed CI tests
      except for powerpc.  So we'll try moving into individual
      arch/ABI that the CI tests cover for now. This commit should
      pass for the following:
      
      - mips32
      - mips64
      - musl32
      - musl64
      - android32
      - android64
      - arm32
      - aarch64
      - x86
      - x86_64
      
      Then we can figure out the powerpc variants.  This also prevents
      potential errors for sparc64 which is not covered by CI.
      1a9112d2
  15. Dec 31, 2016
  16. Nov 14, 2016
    • Wang Xuerui's avatar
      MIPS: Layout refactor · 6b729908
      Wang Xuerui authored
      MIPS32 and MIPS64 userspaces are mostly the same save the obvious ABI
      difference, hence most of the const definitions could be shared.
      
      This commit is not introducing any new significant additions, but mostly
      just shuffles the existing files around to make the directory structure
      more similar to the other, more mature platforms. The structs and extern
      fn definitions are not touched. Plus a couple of new consts for MIPS64
      to match MIPS32 coverage:
      
      * `RLIM_INFINITY`
      * `SYS_gettid`
      
      Passed `libc-test` on Gentoo MIPS64el (n64 ABI), on a Loongson 3A2000
      box. The test suite itself needs some more love to actually compile
      cleanly on MIPS (`ctest` transitively depends on ancient `libc` version
      which doesn't build on MIPS), but let's save that for another day.
      Unverified
      6b729908
    • Alan Somers's avatar
      Fix more CI errors in PR #449 · a46123cf
      Alan Somers authored
      musl has a different aiocb definition; netbsd and OSX have some symbol renaming, and
      lwpid_t is signed on freebsd
      a46123cf
  17. Nov 11, 2016
  18. Oct 05, 2016
    • Ian Denhardt's avatar
      Consolidate and fix musl-specific definitions. · 0ecafc31
      Ian Denhardt authored
      Musl 1.1.14 defined these incorrectly, and we followed suit. They're
      fixed in 1.1.15, so we fix them here as well.
      
      Since these are kernel ABIs, the correct values match other libc
      implementations, so we move them up to the topmost module possible.
      0ecafc31
  19. Sep 18, 2016
  20. Sep 04, 2016
  21. Sep 03, 2016
  22. Aug 27, 2016
  23. Aug 10, 2016
  24. Jul 21, 2016
    • Tomasz Miąsko's avatar
      Add support for pthread_condattr_t on Unix platforms. · cb64485f
      Tomasz Miąsko authored
      Following types and function have been added:
      * pthread_cond_init
      * pthread_condattr_t
      * pthread_condattr_init
      * pthread_condattr_destroy
      * pthread_condattr_setclock [0]
      * pthread_condattr_getclock [0][1]
      
      [0] Not available on OSX.
      [1] May be unavailable on NetBSD, it is a very recent addition.
          Left out from openbsdlike hierarchy for now.
      cb64485f
  25. Jul 12, 2016
  26. Jul 11, 2016
  27. Jul 10, 2016
  28. Jun 05, 2016
  29. May 27, 2016
  30. May 20, 2016
  31. May 13, 2016
  32. Apr 28, 2016
    • Kamal Marhubi's avatar
      notbsd: Deduplicate definitions · b9750b65
      Kamal Marhubi authored
      A bunch of definitions were duplicated across, eg, android and linux.
      This commit pulls these up to higher levels where they can be shared.
      b9750b65
  33. Apr 05, 2016
    • A.J. Gardner's avatar
      Define xlocale and langinfo interfaces · 24c84f13
      A.J. Gardner authored
      There are many constants defined by langinfo, but we have the
      new types, locale_t and nl_item.
      
      We also have several functions, not all of which exist for every
      platform:
      
      nl_langinfo
      nl_langinfo_l
      newlocale
      duplocale
      freelocale
      uselocale
      querylocale
      24c84f13
  34. Mar 31, 2016
    • A.J. Gardner's avatar
      Define struct and consts for notbsds · 5a0c067f
      A.J. Gardner authored
      Linux-likes have more locale categories than the BSDs (except for
      musl). We define the common set of categories at the
      src/unix/notbsd/mod.rs level, and leave the rest to the
      platform-specific modules.
      5a0c067f
Loading