Skip to content
Snippets Groups Projects
  1. Jun 15, 2017
  2. Apr 25, 2017
  3. Apr 24, 2017
  4. Apr 21, 2017
  5. Apr 20, 2017
  6. Apr 19, 2017
  7. Mar 01, 2017
  8. 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
  9. Dec 31, 2016
  10. 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
  11. Nov 11, 2016
  12. 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
  13. Sep 18, 2016
  14. Sep 04, 2016
  15. Sep 03, 2016
  16. Aug 27, 2016
  17. Aug 10, 2016
  18. 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
  19. Jul 12, 2016
  20. Jul 11, 2016
  21. Jul 10, 2016
  22. Jun 05, 2016
  23. May 27, 2016
  24. May 20, 2016
  25. May 13, 2016
  26. 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
  27. 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
  28. 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
  29. Mar 07, 2016
  30. Mar 06, 2016
  31. Mar 02, 2016
    • Alex Crichton's avatar
      Add a style checking script to CI · 8a8bc668
      Alex Crichton authored
      It's tough to have PRs bounce or to have a back and forth with contributors
      about minor style quibbles. Sometimes it ends up just being easier to fix style
      after the fact, but let's add some automation to help this!
      
      This commit adds a script to run on CI and locally to verify the style of this
      repository. There's a few stylistic guidelines to ensure that definitions are
      understandable across the jungle of modules. This consistency should help assist
      readability for any future readers!
      8a8bc668
  32. Feb 05, 2016
  33. Jan 29, 2016
    • Brian Anderson's avatar
      Add musl definitions for x86, arm and asmjs · 773aab82
      Brian Anderson authored
      I've tested x86 against C locally, but not arm or asmjs.
      I added the arm definitions because asmjs's C is derived from arms.
      
      Mysteriously, my locally-built musl does not contain a
      definition for _SC_2_C_VERSION, so I just removed it.
      773aab82
Loading