From be12fa9a19f3ea9e16b144f5bcb3432115cfb35c Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Fri, 16 Jun 2023 14:25:23 -0700 Subject: [PATCH] Add mutex fixme --- zion/lib/mutex.h | 1 + 1 file changed, 1 insertion(+) diff --git a/zion/lib/mutex.h b/zion/lib/mutex.h index a3a4ea3..fe86648 100644 --- a/zion/lib/mutex.h +++ b/zion/lib/mutex.h @@ -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; }