diff options
author | Christian Cunningham <cc@localhost> | 2022-03-12 16:39:39 -0800 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-12 16:39:39 -0800 |
commit | a29f40e073a0308bd74f0f9803a4660aa233c3ab (patch) | |
tree | e607ee7eed39da0e1dcf65c4eb76dd1426899f85 /src/util/lock.c | |
parent | b62c324bde267a5a940b1d06f44f62a125aef50d (diff) |
"Dynamic" Mutex Allocation
Diffstat (limited to 'src/util/lock.c')
-rw-r--r-- | src/util/lock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/lock.c b/src/util/lock.c index 95f93af..eaeb5a8 100644 --- a/src/util/lock.c +++ b/src/util/lock.c @@ -1,5 +1,6 @@ #include <cpu.h> #include <cpu/atomic/swap.h> +#include <util/mutex.h> #include <util/lock.h> // TODO: Improve locking for system |