summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-01Changed options parameter for waitpid to Option<WaitPidFlag>Markus Jais
2015-01-27Fix warnings for `rustc 1.0.0-dev (e365e4c05 2015-01-27 08:40:39)`.Utkarsh Kukreti
2015-01-27Add a `Mode` bitflags and use it instead of `std::io::FilePermission`.Utkarsh Kukreti
These constants are defined in POSIX [1] so we should export them anyways, plus we don't need to depend on `std::io` anymore! [breaking-change] [1]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/stat.h.html
2015-01-26Add a safe wrapper for `libc::isatty`.Utkarsh Kukreti
2015-01-21Add `ioctl`. Only supports the `TIOCGWINSZ` request right now.Utkarsh Kukreti
2015-01-20Make `tcgetattr` API more ergonomic.Utkarsh Kukreti
2015-01-20`pub use` all enum variants in `termios`.Utkarsh Kukreti
2015-01-20Add `termios` bindings.Utkarsh Kukreti
2015-01-16Fix for `bitflags!`, refs https://github.com/rust-lang/rust/pull/21254Fantix King
2015-01-13Bump version to 0.1.2Carl Lerche
2015-01-13changed uint and int to usize and isize respectivelyRick Richardson
2015-01-09Fix a bad cfg on linuxCarl Lerche
2015-01-09Update for Rust 1.0 alphaCarl Lerche
2015-01-07more cstr falloutRick Richardson
2015-01-07ToCStr removal falloutValerii Hiora
2015-01-06Fix breakage caused by the removal of unboxed closuresFlorian Hartwig
2015-01-05Update Cargo manifestCarl Lerche
2015-01-05Bump versionCarl Lerche
2015-01-04Fix a few remaining deprecation noticesCarl Lerche
2015-01-04Merge remote-tracking branch 'vhbit/simple-travis'Carl Lerche
2015-01-03Update to rust masterValerii Hiora
- cstr fallout - deriving -> derive - lib stabilization warnings removal
2015-01-03Added travis testsValerii Hiora
2015-01-02Track rust masterValerii Hiora
- Updated array syntax - task_rng -> thread_rng
2014-12-30added getpeername to sys/socketRick Richardson
2014-12-22Merge remote-tracking branch 'vhbit/ios-support'Carl Lerche
2014-12-22Fixed building on iOSValerii Hiora
2014-12-18Add all now needed ';' after macro invocations.Victor Berger
2014-12-17added msync, madvise, and requisite constants for macos and linuxRick Richardson
2014-12-17Fix the build.Steve Klabnik
2014-12-15bitflags! derives Copy for you now, so remove our derivings.Jonathan Reem
2014-12-12Fallout of Copy opt-in for non-LinuxValerii Hiora
Based on #22.
2014-12-10Fallout of Copy becoming opt-in.Victor Berger
2014-12-10Fix improper_ctypes warnings.Victor Berger
2014-11-28Implement Show for event::EventFlagCarl Lerche
2014-11-19Fix for LinuxRoma Sokolov
2014-11-19Use namespaced enum variants.Roma Sokolov
As per this pull request https://github.com/rust-lang/rust/pull/18973, enum variants require fully qualified path to access them. This commit introduces boring changes to make nix-rust compiles againts new rust.
2014-11-15Track Rust mastervbuslov
2014-11-11Bump version to 0.1.0Carl Lerche
2014-11-11rtio removed, use own routines for reading/writingRoma Sokolov
2014-11-11std::os::errno returns uint nowRoma Sokolov
2014-10-31Update source code to new rustcRoma Sokolov
2014-10-30Merge pull request #15 from ayosec/getsockname-functionCarl Lerche
Add getsockname(2) wrapper
2014-10-30Add getsockname(2) wrapperAyose
2014-10-28Merge pull request #14 from rozaliev/fix_SO_REUSEPORT_osxCarl Lerche
Add SO_REUSEPORT for macos
2014-10-28Add SO_REUSEPORT for macosEvgeny Rozaliev
2014-10-27Merge pull request #13 from 12sidedtech/masterCarl Lerche
Add Memory Management and Scheduler Management Primitives
2014-10-27Add mmap, shm_open and other mman relativesPhil Vachon
Add various wrappers to make interacting with Rust a bit more pleasant for memory management. Additionally, provide ftruncate(2), which is useful when working with shared memory. Allow managing CPU affinity of a Rust Task living in a system thread.
2014-10-22Fix nix on 32 bit platformsCarl Lerche
2014-10-21Add defines for Mac OS X/DarwinPhil Vachon
Apple likes to Think Different(tm), especially where constants are involved. Make sure that we have the appropriate constants available for various performance-focused TCP socket options, and that the IP multicast-related defines are correct.
2014-10-21Polish up sendto/recvfrom wrappersPhil Vachon
Make the sendto/recvfrom wrappers a little more friendly to work with.