condvar 0.1.1

Condition variables (condvars) for boolean predicate. Based on condition_variable crate by Manuel Schölling.
Documentation
  • Coverage
  • 0%
    0 out of 8 items documented0 out of 6 items with examples
  • Size
  • Source code size: 4.98 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.26 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • almikhayl

CondVar rust crate

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.