summaryrefslogtreecommitdiff
path: root/kern/condition.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-08-15 20:55:19 +0200
committerRichard Braun <rbraun@sceen.net>2014-08-15 20:55:19 +0200
commiteefc813bc7424112708992dfbf24def73c92f5de (patch)
tree69d6719073958c49c62c57c8ce5e1635b45950bb /kern/condition.h
parent40502c5f7465300b2bc0cb44325db38b23449deb (diff)
Remove static initializer macros
These initializers are unnecessary, unused, and cumbersome to maintain.
Diffstat (limited to 'kern/condition.h')
-rw-r--r--kern/condition.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/kern/condition.h b/kern/condition.h
index 9cd581a9..3de39be2 100644
--- a/kern/condition.h
+++ b/kern/condition.h
@@ -29,9 +29,6 @@
struct condition;
-#define CONDITION_INITIALIZER(condition) \
- { SPINLOCK_INITIALIZER, NULL, LIST_INITIALIZER((condition).waiters) }
-
static inline void
condition_init(struct condition *condition)
{