summaryrefslogtreecommitdiff
path: root/lib/ultralib/src/os/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ultralib/src/os/thread.c')
-rw-r--r--lib/ultralib/src/os/thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ultralib/src/os/thread.c b/lib/ultralib/src/os/thread.c
index 9a4a141..5a15a61 100644
--- a/lib/ultralib/src/os/thread.c
+++ b/lib/ultralib/src/os/thread.c
@@ -1,11 +1,11 @@
#include "PR/os_internal.h"
-#include "osint.h"
+#include "PRinternal/osint.h"
struct __osThreadTail __osThreadTail = { NULL, -1 };
OSThread* __osRunQueue = (OSThread*)&__osThreadTail;
OSThread* __osActiveQueue = (OSThread*)&__osThreadTail;
-OSThread* __osRunningThread = { 0 };
-OSThread* __osFaultedThread = { 0 };
+OSThread* __osRunningThread = NULL;
+OSThread* __osFaultedThread = NULL;
void __osDequeueThread(register OSThread** queue, register OSThread* t) {
register OSThread* pred;