Skip to content

Remove custom Mutex, Condition, Thread

  1. Replacing the existing Mutex with std::mutex or std::recursive_mutex (if we can't avoid it).
  2. Review existing thread-safety implementation.
  3. Review Condition -> std::condition_variable
  4. Review Thread -> std::thread