Lines Matching refs:OSi_LauncherThread
77 OSThread OSi_LauncherThread; variable
521 OSi_LauncherThread.priority = OS_THREAD_LAUNCHER_PRIORITY; in OS_InitThread()
522 OSi_LauncherThread.id = 0; in OS_InitThread()
523 OSi_LauncherThread.state = OS_THREAD_STATE_READY; in OS_InitThread()
524 OSi_LauncherThread.next = NULL; in OS_InitThread()
527 OSi_LauncherThread.profiler = NULL; in OS_InitThread()
531 OSi_ThreadInfo.entry[0] = &OSi_LauncherThread; in OS_InitThread()
533 OSi_ThreadInfo.list = &OSi_LauncherThread; in OS_InitThread()
536 OS_SetCurrentThread(&OSi_LauncherThread); in OS_InitThread()
546 OSi_LauncherThread.stackBottom = (u32)OSi_LAUNCHER_STACK_BOTTOM; in OS_InitThread()
547 OSi_LauncherThread.stackTop = (u32)stackLo; in OS_InitThread()
548 OSi_LauncherThread.stackWarningOffset = 0; in OS_InitThread()
551 *(u32 *)(OSi_LauncherThread.stackBottom - sizeof(u32)*2) = OSi_STACK_CHECKNUM_BOTTOM; in OS_InitThread()
552 *(u32 *)OSi_LauncherThread.stackTop = OSi_STACK_CHECKNUM_TOP; in OS_InitThread()
555 OS_InitThreadQueue(&OSi_LauncherThread.joinQueue); in OS_InitThread()