mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
Add status variable to threads
This commit is contained in:
parent
1ac9417d50
commit
0d9088eddc
5 changed files with 20 additions and 8 deletions
|
@ -74,7 +74,7 @@ void Kernel::reset() {
|
|||
currentProcess = makeProcess();
|
||||
// Make main thread object. We do not have to set the entrypoint and SP for it as the ROM loader does.
|
||||
// Main thread seems to have a priority of 0x30
|
||||
mainThread = makeThread(0, 0, 0x30, 0);
|
||||
mainThread = makeThread(0, 0, 0x30, 0, ThreadStatus::Running);
|
||||
currentThread = mainThread;
|
||||
|
||||
// Create global service manager port
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue