remutex 0.1.1

Recursive mutex, adapted from Rust's standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(dead_code)]
#![allow(unused_mut)]
#![allow(unreachable_code)]

extern crate libc;

#[cfg(unix)]
#[path = "unix.rs"] mod sys;
#[cfg(windows)]
#[path = "windows.rs"] mod sys;

mod poison;
mod remutex;

pub use remutex::ReentrantMutex;