src/tools/process_locker.rs: implement inter-process reader-writer locks

This commit is contained in:
Dietmar Maurer
2019-03-22 08:04:12 +01:00
parent eb90c9e372
commit a650f50301
3 changed files with 159 additions and 1 deletions

View File

@ -32,6 +32,9 @@ pub mod tty;
pub mod signalfd;
pub mod daemon;
mod process_locker;
pub use process_locker::*;
#[macro_use]
mod file_logger;
pub use file_logger::*;