diff options
Diffstat (limited to 'kern/thread_i.h')
-rw-r--r-- | kern/thread_i.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kern/thread_i.h b/kern/thread_i.h index af278b26..55f96082 100644 --- a/kern/thread_i.h +++ b/kern/thread_i.h @@ -18,6 +18,8 @@ #ifndef _KERN_THREAD_I_H #define _KERN_THREAD_I_H +#include <stdbool.h> + #include <kern/condition_types.h> #include <kern/cpumap.h> #include <kern/list_types.h> @@ -93,6 +95,7 @@ struct thread { /* Sleep/wakeup synchronization members */ struct thread_runq *runq; + bool in_runq; const void *wchan_addr; const char *wchan_desc; unsigned short state; |