Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-28 | Use libc constants in sys/signal.rs. | Philipp Matthias Schaefer | |
2016-02-27 | Add sigwait | Zhe Wang | |
2016-02-25 | Limit MAP_NOSYNC flag to FreeBSD kin | Vasily Kolobkov | |
2016-02-25 | Withdraw MAP_STACK flag from OpenBSD | Vasily Kolobkov | |
2016-02-25 | Use libc | Vasily Kolobkov | |
2016-02-25 | Fix IPV6 group membership options on OpenBSD | Vasily Kolobkov | |
2016-02-25 | Use libc with OpenBSD kin | Vasily Kolobkov | |
2016-02-23 | Add support for AF_PACKET on linux | Herman J. Radtke III | |
2016-02-20 | Auto merge of #274 - abbradar:new-syscalls, r=kamalmarhubi | Homu | |
New syscalls Part of #270 | |||
2016-02-20 | Auto merge of #271 - abbradar:mqueue-fixes, r=kamalmarhubi | Homu | |
mqueue: change types to allow more cases Part of https://github.com/nix-rust/nix/pull/270, fixed according to @kamalmarhubi's comments. | |||
2016-02-20 | mqueue: change types to allow more cases | Nikolay Amiantov | |
2016-02-20 | select: make FdSet Cloneable | Nikolay Amiantov | |
2016-02-20 | select: allow infinite timeout | Nikolay Amiantov | |
2016-02-20 | unistd: add chown syscall | Nikolay Amiantov | |
2016-02-19 | unistd: add setuid, setgid syscalls | Nikolay Amiantov | |
2016-02-14 | linux: Add splice(2), tee(2), vmsplice(2) | Kamal Marhubi | |
2016-02-12 | linux: Add sendfile(2) | Kamal Marhubi | |
2016-02-08 | signal: Allow raw_pointer_derive on SigAction struct | Kamal Marhubi | |
This will fix the build on pre-1.6.0 Rust. | |||
2016-02-04 | Let SigHandler derive Clone and Copy | Philipp Matthias Schaefer | |
and thereby make it usable. | |||
2016-02-04 | Handle `SA_SIGINFO` flag in the constructor. | Philipp Matthias Schaefer | |
If someone creates so many SigAction structs, that a few extra instructions per object creation create a performance problem, we could still provide an unsafe variant, that let's the user take care of the flag. | |||
2016-02-04 | Account for the different signal handler types. | Philipp Matthias Schaefer | |
2016-02-04 | Add comment on IPv6 address endianness. | Philipp Matthias Schaefer | |
2016-02-04 | IPv6 addresses are always in big endian order | Frank Denis | |
no matter what the architecture is. | |||
2016-02-01 | Implement SO_ACCEPTCONN sockopt | Stanisław Pitucha | |
Only known on linux, nacl, freebsd | |||
2016-02-01 | Add SO_TYPE handling in getsockopt | Stanisław Pitucha | |
2016-01-29 | Convert MSG_ flags to bitflags! type. | Philipp Matthias Schaefer | |
2016-01-29 | Add support for SO_{RCV,SND}BUF(FORCE)? sockopts | Frank Denis | |
2016-01-29 | cfg out MAP_32BIT on non-x86 | arcnmx | |
2016-01-28 | Rename to MapFlags and MsFlags. | Philipp Matthias Schaefer | |
2016-01-28 | Convert MS_ flags to bitflags! type. | Philipp Matthias Schaefer | |
2016-01-28 | Convert PROT_ flags to bitflags! type. | Philipp Matthias Schaefer | |
2016-01-28 | Convert MAP_ flags to bitflags! type. | Philipp Matthias Schaefer | |
2016-01-28 | Convert CLONE_ flags to bitflags! type. | Philipp Matthias Schaefer | |
2016-01-28 | Use sockaddr_nl from libc | Kamal Marhubi | |
2016-01-28 | Derive all the things | Alexander Polakov | |
as suggested by @kamalmarhubi | |||
2016-01-28 | Fix style suggestions regarding #cfg | Alexander Polakov | |
as pointed out by @kamalmarhubi | |||
2016-01-28 | Netlink bits | Alexander Polakov | |
2016-01-28 | Move errno::Result back to crate root | arcnmx | |
2016-01-28 | Errno::result() | arcnmx | |
2016-01-27 | Avoid stack allocation in with_nix_path for Option::None | Kamal Marhubi | |
2016-01-27 | Bring back mount | Kamal Marhubi | |
Fixes https://github.com/carllerche/nix-rust/issues/85 | |||
2016-01-27 | Implement NixPath for Option<&T> where T: NixPath | Kamal Marhubi | |
2016-01-27 | Implement NixPath for str and OsStr | Kamal Marhubi | |
This is a stop gap improvement until the NixPath reform is figured out. refs #221 | |||
2016-01-27 | Use the net module unconditionally | Kamal Marhubi | |
The functions defined are POSIX and should exist on all platforms nix supports. | |||
2016-01-27 | Use NixPath for if_nametoindex | Kamal Marhubi | |
2016-01-27 | Use function name as it is used in C. | Marc Brinkmann | |
2016-01-27 | Added note regarding naming. | Marc Brinkmann | |
2016-01-27 | Use nix::Result explicitly. | Marc Brinkmann | |
2016-01-27 | Changed Error type to nix::Error. | Marc Brinkmann | |
2016-01-27 | Do not use extern, but if_nametoindex from libc instead. | Marc Brinkmann | |