fslock

Crates.iofslock
lib.rsfslock
version0.2.1
sourcesrc
created_at2020-01-01 05:47:08.522751
updated_at2021-12-20 19:12:35.80893
descriptionA library to use files as locks
homepage
repositoryhttps://github.com/brunoczim/fslock
max_upload_size
id194064
size60,636
(brunoczim)

documentation

README

fslock

API to use files as a lock. Supports non-std crates by disabling feature std.

Types

Currently, only one type is provided: [LockFile]. It does not destroy the file after closed and behaviour on locking different file handles owned by the same process is different between Unix and Windows, unless you activate the multilock feature, which enables the open_excl method that locks files per file descriptor/handle on all platforms.

Example

use fslock::LockFile;
fn main() -> Result<(), fslock::Error> {

    let mut file = LockFile::open("mylock")?;
    file.lock()?;
    do_stuff();
    file.unlock()?;

    Ok(())
}

Docs on Master

https://brunoczim.github.io/fslock/fslock

Commit count: 97

cargo fmt