• Stars
    star
    1
  • Language
    C++
  • Created over 10 years ago
  • Updated over 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A C++ mutex class that can give threads passed "with priority" first shot at the scheduler. Inspired by a test question to be as lean of an implementation as possible. Supposedly possible without the atomic<int> or any additional mutexes, cv's, etc. I would like to know if that is possible! Test harness is provided.