sema 0.1.3

Rust semaphore library
Documentation

sema

A simple semaphore.

Build Status Crates.io Crates.io

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]

sema = "*"

and this to your crate root:

extern crate sema;

Overview

Sema provides a safe Semaphore abstraction built on the POSIX sem_t type.