Skip to content

Instantly share code, notes, and snippets.

@soruh
Created February 9, 2022 02:20
Show Gist options
  • Save soruh/23b5d0a7df7ed08b4a0ff89cddb1b5ec to your computer and use it in GitHub Desktop.
Save soruh/23b5d0a7df7ed08b4a0ff89cddb1b5ec to your computer and use it in GitHub Desktop.
{
unique_lock lock(mutex); // takes the lock
convar.wait(mutex) // wait
// do stuff with the lock
}
// the lock is no longer held
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment