summaryrefslogtreecommitdiff
path: root/src/io.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-01-06 08:18:58 -0600
committerAlejandro Soto <alejandro@34project.org>2022-01-06 08:18:58 -0600
commitb3a9082a8b81c28ef81dbaaffe171f646b1f2777 (patch)
treed878ad0185657eff76426888d46420b48e47725b /src/io.rs
parenta65325e15844f880132a69b447e4aec983cb30ab (diff)
Implement Fsync/Fsyncdir
Diffstat (limited to 'src/io.rs')
-rw-r--r--src/io.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/io.rs b/src/io.rs
index 7124fda..9ec3214 100644
--- a/src/io.rs
+++ b/src/io.rs
@@ -19,6 +19,8 @@ pub use nix::{
unistd::{AccessFlags, Gid, Pid, Uid},
};
+pub use proto::FsyncFlags;
+
pub enum Interruptible<'o, O: Operation<'o>, T> {
Completed(Reply<'o, O>, T),
Interrupted(Done<'o>),