Commit Graph

1306 Commits

Author SHA1 Message Date
Trevor Spiteri
ec3a29cd69 fix domain of html_root_url to be rust-lang.github.io 2018-04-21 08:48:06 +02:00
Calvin Hill
353d64549d haiku: Add RLIMIT_STACK and fix RTLD_* definitions 2018-04-20 12:35:01 +01:00
bors
69769fbf3b Auto merge of #972 - gnzlbg:packed, r=alexcrichton
Fix undefined-behavior on MacOSX structs in stdbuilds

Some MacOSX structs have an incorrect layout that results in undefined behavior. This is because on `x86_64` the MacOSX kernel headers define these using `#pragma pack 4`.

This PR fixes their layout using `repr(packed(4))` . Since it is only available on nightly, it is only enabled for stdbuilds .
2018-04-17 04:01:32 +00:00
真人
19a4c202e3 feat: add fread_unulock for linux 2018-04-17 08:56:34 +08:00
gnzlbg
dfee17f1ff fix this for stdbuild only 2018-04-15 14:50:00 +02:00
gnzlbg
dc1956e2ef fix undefined behavior due to incorrect packing on macosx 2018-04-15 14:45:26 +02:00
bors
28b4d16309 Auto merge of #971 - faern:public-netlink-fields, r=alexcrichton
Make netlink struct fields public

I realized my netlink structs were a bit unusable if their fields are not public 🤦‍♂️

Follow up and improvement to #922
2018-04-12 15:31:20 +00:00
Linus Färnstrand
c8e9232f3d Make fields in all netlink related structs public 2018-04-11 09:18:41 +02:00
Mike Hommey
4c5e483f7f Fix statvfs on mips and powerpc glibc 2018-04-11 12:11:09 +09:00
bors
846ecb00ff Auto merge of #960 - glandium:mutex-init, r=alexcrichton
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.
2018-04-10 21:51:01 +00:00
Mike Hommey
d9013273a0 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.

Relax the cfg_if check in ci/style.rs to allow #[cfg(target_endian)]
tests.
2018-04-11 06:38:18 +09:00
Mike Hommey
4355dfcfa4 Add PTHREAD_MUTEX_ADAPTIVE_NP for glibc 2018-04-11 06:38:18 +09:00
Sébastien Marie
04aa1bb572 openbsd: SIGSTKSZ has been reduced 2018-04-10 16:53:12 +02:00
Craig M. Brandenburg
263abfefef Add flock type value definitions for Linux/other/x86_64 2018-04-08 06:47:32 -07:00
bors
67713687fc Auto merge of #952 - semarie:map_stack, r=alexcrichton
Add MAP_STACK constant to OpenBSD

The mmap(2) flag indicate that the mapping is used as a stack.

https://man.openbsd.org/mmap.2#MAP_STACK
https://marc.info/?l=openbsd-tech&m=152035796722258&w=2
2018-04-07 14:30:24 +00:00
Nathaniel McCallum
585e11549e Default RHS to Self for Div and Shl
This fixes a consistency issue with the other operator traits.
2018-04-06 09:48:17 -04:00
Mike Hommey
e2bfbc5eb0 Add dox::{Copy, Clone} impls for pointer and integer types.
Fixes: #961
2018-04-05 11:40:22 +09:00
bors
829d02037c Auto merge of #958 - draganmladjenovic:uclibc_mips32, r=alexcrichton
Fix libstd build for mips*-unknown-linux-uclibc

The getrandom syscall related constant were missing. This PR adds full syscall table just in case and few other nits.
2018-04-03 23:42:39 +00:00
dragan.mladjenovic
6bc7e259e0 Fix style for #958. 2018-04-03 19:17:58 +02:00
dragan.mladjenovic
ba0e4bb4d3 Fix libstd build for mips*-unknown-linux-uclibc 2018-04-03 16:25:38 +02:00
Matt T. Proud
22d078e678 netbsdlike: add TIOCSCTTY and TIOCSWINSZ ioctls.
Include ioctl commands for becoming controlling tty and setting window
size.  This enables https://github.com/jwilm/alacritty to be built and
run on OpenBSD 6.3.  NetBSD and kin share the same command constants.
2018-04-03 08:49:38 +02:00
bors
a7e78a78e1 Auto merge of #955 - afck:master, r=alexcrichton
Add MCL_CURRENT and MCL_FUTURE to s390.
2018-03-24 22:44:56 +00:00
bors
9d6556c9fa Auto merge of #954 - cphrn:master, r=alexcrichton
Add strtonum to OpenBSD

OpenBSD provides [strtonum](http://man.openbsd.org/strtonum) but it is not in libc, yet.
2018-03-24 21:53:52 +00:00
Andreas Fackler
0bb381c51d Add MCL_CURRENT and MCL_FUTURE to s390. 2018-03-24 17:25:25 +01:00
Jan S
8744ca11ae Add strtonum to OpenBSD 2018-03-22 22:19:13 +01:00
Sébastien Marie
16527634cc Add MAP_STACK constant to OpenBSD
The mmap(2) flag indicate that the mapping is used as a stack.

https://man.openbsd.org/mmap.2#MAP_STACK
https://marc.info/?l=openbsd-tech&m=152035796722258&w=2
2018-03-19 08:39:35 +01:00
Francis Gagné
18341fd23a Rename the dox configuration option to cross_platform_docs
The libc crate is used as a dependency of the Rust compiler. Its build
system passes `--cfg dox` to all crates when generating their
documentation. libc's documentation is generated when the build system
is asked to generate the compiler documentation because `cargo doc`
automatically documents all dependencies.

When the dox configuration option is enabled, libc disables its
dependency on the core crate and provides the necessary definitions
itself. The dox configuration option is meant for generating
documentation for a multitude of targets even if the core crate for that
target is not installed. However, when documenting the compiler, it's
not necessary to do that; we can just use core or std as usual.

This change is motivated by the changes made to the compiler in
rust-lang/rust#48171. With these changes, it's necessary to provide
implementations of the Clone and Copy traits for some primitive types in
the library that defines these traits (previously, these implementations
were provided by the compiler). Normally, these traits (and thus the
implementations) are provided by core, so any crate that uses
`#![no_core]` must now provide its own copy of the implementations.

Because libc doesn't provide its own copy of the implementations yet,
and because the compiler's build system passes `--cfg dox` to libc,
generating the documentation for the compiler fails when generating
documentation for libc. By renaming the configuration option, libc will
use core or std and will thus have the necessary definitions for the
documentation to be generated successfully.
2018-03-18 16:39:40 -04:00
Alan Somers
549da8a7af Define fdatasync on FreeBSD. It was introduced in FreeBSD 11.1. 2018-03-16 16:10:09 -06:00
Wesley Moore
cddc3385ce Merge branch 'fix-build-freebsd' into update-freebsd-ci-image 2018-03-17 07:02:44 +11:00
Sebastian Humenda
aa6afb9b69 redefine pthread_t for l4re-uclibc 2018-03-12 22:22:44 +01:00
Wesley Moore
be2f062767 Fix test suite on FreeBSD 11 2018-03-12 11:03:46 +11:00
bors
787420a7a3 Auto merge of #946 - bgermann:master, r=alexcrichton
Add ___errno() for Solaris
2018-03-10 18:29:06 +00:00
bgermann
cf70168621 Edit documentation
Add sparc64-unknown-linux-gnu and x86_64-sun-solaris.
Remove aarch64-unknown-linux-musl.
2018-03-10 13:10:50 +01:00
bgermann
4c1d1f809d Add ___errno() for Solaris 2018-03-10 09:45:55 +01:00
Wictor Lund
ba2e460b4e Retract ucred type alias for sockpeercred from OpenBSD and Bitrig 2018-03-08 22:15:12 +02:00
bors
837310de9a Auto merge of #942 - wictory:pledge_changed, r=alexcrichton
Arguments of pledge(2) changed.

The arguments of pledge(2) have changed. However, the changes have to yet been propagated to Bitrig.

https://marc.info/?l=openbsd-tech&m=151268831628549&w=2
2018-03-07 22:12:38 +00:00
bors
1669334a6e Auto merge of #943 - wictory:recycle_ffi_openbsd, r=alexcrichton
Recycle IFF_NOTRAILERS into IFF_STATICARP in OpenBSD but not in Bitrig.

https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/net/if.h?rev=1.190&content-type=text/x-cvsweb-markup
2018-03-07 21:26:12 +00:00
Wictor Lund
88c536dc75 Recycle IFF_NOTRAILERS into IFF_STATICARP in OpenBSD but not in Bitrig.
https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/net/if.h?rev=1.190&content-type=text/x-cvsweb-markup
2018-03-07 18:17:48 +02:00
Wictor Lund
6b20b3761c getpwent_r() and getgrent_r() exists in NetBSD, but not in OpenBSD and Bitrig. 2018-03-07 18:16:37 +02:00
Wictor Lund
349d343caa Arguments of pledge(2) changed.
https://marc.info/?l=openbsd-tech&m=151268831628549&w=2
2018-03-07 17:52:34 +02:00
Wictor Lund
2e38d9a944 Added ucred (sockpeercred) for OpenBSD and Bitrig 2018-03-07 16:00:43 +02:00
Fredrick Brennan
528374ed9a Add FreeBSD get[pw|gr]ent_r, forgotten in #934
Sorry, accidentally forgot this when submitting #934..
2018-03-05 21:25:55 +08:00
bors
936e16bccb Auto merge of #934 - ctrlcctrlv:master, r=alexcrichton
Add passwd/group APIs needed for nix-rust/nix#864

Hope I did this right. I only added platforms I could personally test. . .

cc: @gnzlbg
2018-03-03 03:25:49 +00:00
Fredrick Brennan
6d959f1a53 Fix BSD errors (hopefully) 2018-03-04 13:11:04 +00:00
Fredrick Brennan
99869e02ec Fix failure to document for Open/NetBSD 2018-03-04 10:48:39 +00:00
Fredrick Brennan
0f24a662b0 Fix long line 2018-03-04 10:41:02 +00:00
Fredrick Brennan
6228556cfa Fix issues raised by @gnzlbg 2018-03-04 10:09:43 +00:00
Fredrick Brennan
f59c095c5c Remove "double blank line" 2018-03-03 11:53:39 +00:00
Fredrick Brennan
74c554c395 Fix build error on stable Rust 2018-03-03 11:26:40 +00:00
Fredrick Brennan
5f9538d1e2 Add passwd/group APIs needed for nix-rust/nix#864 2018-03-03 11:13:02 +00:00