diff options
author | Richard Braun <rbraun@sceen.net> | 2014-08-15 20:55:19 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2014-08-15 20:55:19 +0200 |
commit | eefc813bc7424112708992dfbf24def73c92f5de (patch) | |
tree | 69d6719073958c49c62c57c8ce5e1635b45950bb /kern/condition.h | |
parent | 40502c5f7465300b2bc0cb44325db38b23449deb (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.h | 3 |
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) { |