branchfs 0.1.1

FUSE filesystem with atomic branching for speculative execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod branch;
pub mod daemon;
pub mod error;
pub mod fs;
mod fs_ctl;
mod fs_helpers;
pub(crate) mod fs_path;
pub mod inode;
pub mod platform;
pub mod storage;

pub use daemon::{
    ensure_daemon, is_daemon_running, send_request, start_daemon_background, Daemon, Request,
    Response,
};
pub use error::{BranchError, Result};
pub use platform::{FS_IOC_BRANCH_ABORT, FS_IOC_BRANCH_COMMIT, FS_IOC_BRANCH_CREATE};