summaryrefslogtreecommitdiff
path: root/test/test_mq.rs
AgeCommit message (Collapse)Author
2016-03-30unistd: Redesign the enum returned by fork()Kamal Marhubi
This commit changes the name of the enum returned by `fork()` to `ForkResult`, and changes the `Parent` variant to be struct-like. The result can be matched like use nix::unistd::ForkResult::*; match fork().unwrap() { Parent { child } => { ... } Child => { ... } } using the shorthand matching syntax for struct-like enum variants. This is a breaking change.
2016-02-20mqueue: change types to allow more casesNikolay Amiantov
2015-09-28added convenience functions for setting O_NONBLOCK on message queuesMarkus Jais
2015-09-03added support and tests for mq_setattrMarkus Jais
2015-08-17renamed test methods for mqueue and added mq_unlinkMarkus Jais
2015-07-18added mq_getattr for LinuxMarkus Jais
2015-05-28Move nix::mq -> nix::mqueue to mirror headerCarl Lerche
2015-05-16cleaned up mq unit testsMarkus Jais
2015-04-27Basic Posix MQ supportMarkus Jais