summaryrefslogtreecommitdiff
path: root/kern/mutex.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2013-04-14 01:10:51 +0200
committerRichard Braun <rbraun@sceen.net>2013-04-14 01:10:51 +0200
commit909c423347085774a3fc7f8021ce765465cc92c8 (patch)
tree0045478b6d9ce7eeb27a785cb6e5cfcede84ff25 /kern/mutex.c
parent3f78c71aac3de4a963f218426d10ff7a1c188614 (diff)
kern/condition: new module
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)
{