Crates.io | condvar |
lib.rs | condvar |
version | 0.1.1 |
source | src |
created_at | 2015-09-21 10:50:31.150856 |
updated_at | 2016-06-16 08:29:01.260324 |
description | Condition variables (condvars) for boolean predicate. Based on condition_variable crate by Manuel Schölling. |
homepage | |
repository | https://bitbucket.org/almikhayl/condvar |
max_upload_size | |
id | 3084 |
size | 3,474 |
Standard library conditional variables are subject for spurious wakeups. This crate is wrapper around std::sync::Condvar with boolean predicate that handles spurious wakeups, so you don't have to do it yourself. Based on condition_variable crate by Manuel Schölling.