summaryrefslogtreecommitdiff
path: root/src/mqueue.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-02-16 16:18:44 +0100
committerSimon Sapin <simon.sapin@exyr.org>2017-02-16 16:18:44 +0100
commite47d55c3bec4335033d4954198c25b778ff30a86 (patch)
tree6fa02dfbf4f1ba962749c2675448fe0fbc05c08b /src/mqueue.rs
parent7a91a816c5f8b8ffbf9bc5798f92ecbb8bbd7713 (diff)
downloadnix-e47d55c3bec4335033d4954198c25b778ff30a86.zip
Update bitflags to 0.7
Diffstat (limited to 'src/mqueue.rs')
-rw-r--r--src/mqueue.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mqueue.rs b/src/mqueue.rs
index 9bf6e77e..2c127502 100644
--- a/src/mqueue.rs
+++ b/src/mqueue.rs
@@ -10,7 +10,7 @@ use sys::stat::Mode;
use std::mem;
libc_bitflags!{
- flags MQ_OFlag: libc::c_int {
+ pub flags MQ_OFlag: libc::c_int {
O_RDONLY,
O_WRONLY,
O_RDWR,
@@ -22,7 +22,7 @@ libc_bitflags!{
}
libc_bitflags!{
- flags FdFlag: libc::c_int {
+ pub flags FdFlag: libc::c_int {
FD_CLOEXEC,
}
}