Age | Commit message (Collapse) | Author |
|
795: Use sh as interpreter r=asomers a=dereckson
No bash-specific feature is used, so deploy script will work
in every POSIX OS, even when bash isn't installed.
|
|
No bash-specific feature is used, so deploy script will work
in every POSIX OS, even when bash isn't installed.
|
|
733: unistd: Add getgroups, setgroups, getgrouplist, initgroups r=Susurrus a=JayH5
|
|
|
|
|
|
|
|
Don't need to call as_c_str()
|
|
Fix groups mutex name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568: Add process_vm_readv and process_vm_writev r=asomers a=geofft
|
|
787: Omit invalid waitpid flags on OpenBSD r=Susurrus a=worr
OpenBSD doesn't have `WEXITED`, `WSTOPPED`, or `WNOWAIT`, so omit those
from that platform.
|
|
|
|
OpenBSD doesn't have `WEXITED`, `WSTOPPED`, or `WNOWAIT`, so omit those
from that platform.
|
|
792: Use libc_enum! where possible r=Susurrus a=wginolas
Some enums which use different names for values than libc still set the
discriminators manually.
closes #254
|
|
|
|
|
|
771: ptrace: add PTRACE_O_EXITKILL option r=Susurrus a=bpowers
It is a somewhat newer option -- it requires Linux 3.8. Is there a
more precise way to specify that?
|
|
794: Migrate memfd constants to libc r=Susurrus a=Susurrus
This will fail because rust-lang/libc#836 is not merged yet, but just getting it staged for when it is.
|
|
|
|
Some enums which use different names for values than libc still set the
discriminators manually.
closes #254
|
|
790: Fix netbsd kevent for breakage introduced by libc r=asomers a=Susurrus
|
|
The datatype for kevent.filter is u32 on NetBSD and
i16 on all other supported platforms. This was recently
fixed in upstream libc, breaking this API, so this
fixes it.
This change also modernizes the code a bit to unify the
EventFilter datatype across platforms and switch to the
libc_enum! macro.
|
|
|
|
|
|
It is a somewhat newer option -- it requires Linux 3.8.
|
|
780: Add a test for ppoll r=Susurrus a=asomers
|
|
782: Fix formatting in CHANGELOG.md r=posborne a=asomers
|
|
783: Promote i686-unknown-freebsd to Tier1 in the README r=Susurrus a=asomers
We effectively made it Tier1 back in
ec6fe0629df87d8355cbdba8b7a0855934a5ac9e, but never updated the README.
|
|
We effectively made it Tier1 back in
ec6fe0629df87d8355cbdba8b7a0855934a5ac9e, but never updated the README.
|
|
|
|
|
|
774: #602 added unistd::mkfifo r=asomers a=jpastuszek
Since libc has mkfifo already I have just copied mkdir and adapted to mkfifo. I have tested that on MacOS only.
|
|
|
|
778: Replace most Linux man page links with Open Group man page links r=posborne a=asomers
But leave in place Linux links for non-standard functions. Also, add
brief docs for some functions that were lacking them.
|
|
768: Add support for 'fallocate' r=asomers a=SanchayanMaity
For #596
|
|
But leave in place Linux links for non-standard functions. Also, add
brief docs for some functions that were lacking them.
|
|
|
|
|
|
773: Add more accessors for AioCb r=asomers a=asomers
|
|
775: Fix test warnings r=asomers a=SanchayanMaity
|
|
This fixes the following warning during run of cargo test
warning: variable does not need to be mutable
--> test/sys/test_aio.rs:16:13
|
16 | fn poll_aio(mut aiocb: &mut AioCb) -> Result<()> {
| ^^^^^^^^^
|
= note: #[warn(unused_mut)] on by default
|
|
gcc::Config has been renamed to gcc::Build
This fixes the following warning during run of cargo test
warning: use of deprecated item: gcc::Config has been renamed to gcc::Build
--> nix-test/build.rs:16:5
|
16 | gcc::Config::new()
| ^^^^^^^^^^^^^^^^
|
= note: #[warn(deprecated)] on by default
|
|
|