esync 0.1.2

This package contains some useful synchronization primitives
Documentation
  • Coverage
  • 55.56%
    5 out of 9 items documented1 out of 6 items with examples
  • Size
  • Source code size: 10.82 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.43 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 21s Average build duration of successful builds.
  • all releases: 21s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • mchelaru/esync
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mchelaru

Extended synchronization primitives

This package contains some primitives that I am using across my projects.

Semaphore

Example:

let sem = Semaphore::new(10);
sem.wait();
// do important things here
sem.release();