Crate sync_linux_no_libc

Source
Expand description

This project aims to reimplement some of the most basic Rust std::sync utilities on Linux, like std::sync::Mutex and std::sync::Barrier, all without the use of libc. Instead, it makes Linux syscalls directly.

§Crate features

  • not_process_private - Allows for sharing the synchronization primitives with other processes.

Modules§

sync
Linux no_libc synchronization primitives.