diff options
Diffstat (limited to 'include/globals.h')
-rw-r--r-- | include/globals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/globals.h b/include/globals.h index 6c7e1f1..478b62e 100644 --- a/include/globals.h +++ b/include/globals.h @@ -1,5 +1,6 @@ #ifndef GLOBALS_H #define GLOBALS_H +#include <cpu/irq.h> #include <sys/schedule.h> #include <util/mutex.h> @@ -20,6 +21,7 @@ extern struct Mutex mutexs[MAX_MUTEXS]; extern struct Entry mutex_entries[MAX_MUTEXS]; extern struct Thread threads[MAX_THREADS]; extern struct Entry thread_entries[MAX_THREADS]; +extern struct IrqEntry irqs[MAX_IRQS]; #endif #endif |