summaryrefslogtreecommitdiff
path: root/arm9/lib/include/OS_thread.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-05-05 20:13:17 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-05-05 20:13:17 -0400
commit3c458e8b4893866639734a572a7d8e5ce6c7c1ce (patch)
tree52fccbceefc204ab6350c1a1412f167ea007fffe /arm9/lib/include/OS_thread.h
parent6071299191b3386f1d266a25ec6b49af2c2beda5 (diff)
Decompile GF funcs responsible for overlays
Diffstat (limited to 'arm9/lib/include/OS_thread.h')
-rw-r--r--arm9/lib/include/OS_thread.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arm9/lib/include/OS_thread.h b/arm9/lib/include/OS_thread.h
index 4fb70bf7..207dac1b 100644
--- a/arm9/lib/include/OS_thread.h
+++ b/arm9/lib/include/OS_thread.h
@@ -7,6 +7,14 @@
typedef struct _OSThread OSThread;
+struct _OSThreadQueue
+{
+ OSThread *head;
+ OSThread *tail;
+};
+
+typedef struct _OSThreadQueue OSThreadQueue;
+
typedef struct OSThreadInfo {
u16 isNeedRescheduling;
u16 irqDepth;