summaryrefslogtreecommitdiff
path: root/kern/mutex.c
diff options
context:
space:
mode:
Diffstat (limited to 'kern/mutex.c')
-rw-r--r--kern/mutex.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/kern/mutex.c b/kern/mutex.c
index 507116e2..90922903 100644
--- a/kern/mutex.c
+++ b/kern/mutex.c
@@ -22,11 +22,6 @@
#include <kern/thread.h>
#include <machine/atomic.h>
-struct mutex_waiter {
- struct list node;
- struct thread *thread;
-};
-
void
mutex_init(struct mutex *mutex)
{