diff options
author | Richard Braun <rbraun@sceen.net> | 2017-02-04 16:21:10 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-02-04 16:21:10 +0100 |
commit | 7a00044da882d30b1dea8757c7f6a1ccaa9ee08d (patch) | |
tree | 9e342eca8a673ac9b0982c3e4bda22ff5158690e /kern/condition.h | |
parent | d09b913612712c7d58e5ee3ee20703cce63ad0b0 (diff) |
kern/types: split into module-specific type headers
Using a single header for all types causing inclusion circular
dependencies isn't very elegant and doesn't scale.
Diffstat (limited to 'kern/condition.h')
-rw-r--r-- | kern/condition.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/kern/condition.h b/kern/condition.h index 3de39be2..4e7f7f0f 100644 --- a/kern/condition.h +++ b/kern/condition.h @@ -21,13 +21,10 @@ #ifndef _KERN_CONDITION_H #define _KERN_CONDITION_H +#include <kern/condition_types.h> #include <kern/list.h> -#include <kern/mutex.h> #include <kern/spinlock.h> #include <kern/stddef.h> -#include <kern/types.h> - -struct condition; static inline void condition_init(struct condition *condition) |