summaryrefslogtreecommitdiff
path: root/kern/thread_i.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-02-04 16:21:10 +0100
committerRichard Braun <rbraun@sceen.net>2017-02-04 16:21:10 +0100
commit7a00044da882d30b1dea8757c7f6a1ccaa9ee08d (patch)
tree9e342eca8a673ac9b0982c3e4bda22ff5158690e /kern/thread_i.h
parentd09b913612712c7d58e5ee3ee20703cce63ad0b0 (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/thread_i.h')
-rw-r--r--kern/thread_i.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/kern/thread_i.h b/kern/thread_i.h
index 752eb944..6d9bc501 100644
--- a/kern/thread_i.h
+++ b/kern/thread_i.h
@@ -18,11 +18,12 @@
#ifndef _KERN_THREAD_I_H
#define _KERN_THREAD_I_H
+#include <kern/condition_types.h>
#include <kern/cpumap.h>
#include <kern/list.h>
#include <kern/macros.h>
+#include <kern/mutex_types.h>
#include <kern/param.h>
-#include <kern/types.h>
#include <machine/atomic.h>
#include <machine/tcb.h>