Skip to content
Snippets Groups Projects
  1. May 10, 2018
  2. May 07, 2018
  3. May 06, 2018
  4. May 01, 2018
  5. Apr 23, 2018
  6. Apr 21, 2018
  7. Apr 20, 2018
  8. Apr 17, 2018
  9. Apr 16, 2018
  10. Apr 15, 2018
  11. Apr 12, 2018
  12. Apr 11, 2018
  13. Apr 10, 2018
    • bors's avatar
      Auto merge of #960 - glandium:mutex-init, r=alexcrichton · 846ecb00
      bors authored
      Add PTHREAD_*_MUTEX_INITIALIZER_NP for glibc
      
      `pthread_mutex_t` varies across architectures, in several ways:
      - endianness alters the ordering of bytes, since the contents of the
        struct are larger than 8-bit.
      - its length varies.
      - the location of the mutex kind (`PTHREAD_MUTEX_RECURSIVE`,
        `PTHREAD_MUTEX_ERRORCHECK` or `PTHREAD_MUTEX_ADAPTIVE_NP`) varies
        between 32-bit and 64-bit: On 32-bit architectures, it is preceded by
        three int/unsigned int, while on 64-bit architectures, it is preceded
        by four of them.
      
      These initializers are only available from <pthread.h> when _GNU_SOURCE
      is defined.
      846ecb00
    • Mike Hommey's avatar
      Add PTHREAD_*_MUTEX_INITIALIZER_NP for glibc · d9013273
      Mike Hommey authored
      `pthread_mutex_t` varies across architectures, in several ways:
      - endianness alters the ordering of bytes, since the contents of the
        struct are larger than 8-bit.
      - its length varies.
      - the location of the mutex kind (`PTHREAD_MUTEX_RECURSIVE`,
        `PTHREAD_MUTEX_ERRORCHECK` or `PTHREAD_MUTEX_ADAPTIVE_NP`) varies
        between 32-bit and 64-bit: On 32-bit architectures, it is preceded by
        three int/unsigned int, while on 64-bit architectures, it is preceded
        by four of them.
      
      These initializers are only available from <pthread.h> when _GNU_SOURCE
      is defined.
      
      Relax the cfg_if check in ci/style.rs to allow #[cfg(target_endian)]
      tests.
      d9013273
    • Mike Hommey's avatar
      Add PTHREAD_MUTEX_ADAPTIVE_NP for glibc · 4355dfcf
      Mike Hommey authored
      4355dfcf
    • bors's avatar
      Auto merge of #967 - semarie:openbsd-sigstksz, r=alexcrichton · 7eb60555
      bors authored
      openbsd: SIGSTKSZ has been reduced
      
      On OpenBSD 6.3, `SIGSTKSZ` value has changed.
      https://github.com/openbsd/src/commit/e211c58cc8e20862a4eaa1b91fd4bc4a2975dad3
      7eb60555
    • Sébastien Marie's avatar
      openbsd: SIGSTKSZ has been reduced · 04aa1bb5
      Sébastien Marie authored
      04aa1bb5
  14. Apr 08, 2018
  15. Apr 07, 2018
  16. Apr 06, 2018
  17. Apr 05, 2018
Loading