Add mutex fixme

This commit is contained in:
Drew Galbraith 2023-06-16 14:25:23 -07:00
parent 4e328c2f7a
commit be12fa9a19
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ class Mutex {
public:
Mutex(const char* name) : name_(name) {}
// FIXME: Block thread on lock rather than "preempting"
void Lock();
void Unlock() { lock_ = false; }