mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 07:19:20 +00:00
Updated kernel (tl;dr: improved filesystem, tasking, loading files, etc..)
This commit is contained in:
@ -33,12 +33,10 @@ namespace Recovery
|
||||
|
||||
gui = new GraphicalUserInterface::GUI;
|
||||
|
||||
Vector<AuxiliaryVector> auxv;
|
||||
auxv.push_back({.archaux = {.a_type = AT_NULL, .a_un = {.a_val = 0}}});
|
||||
// TaskManager->CreateThread(proc, (IP)RecoveryThreadWrapper, nullptr, nullptr, auxv);
|
||||
TCB *guiThread = TaskManager->CreateThread(TaskManager->GetCurrentProcess(), (IP)GUIWrapper, nullptr, nullptr, auxv);
|
||||
TCB *guiThread = TaskManager->CreateThread(TaskManager->GetCurrentProcess(), (IP)GUIWrapper);
|
||||
guiThread->Rename("GUI Thread");
|
||||
guiThread->SetPriority(100);
|
||||
guiThread->SetPriority(Tasking::TaskPriority::Critical);
|
||||
|
||||
Rect RecoveryModeWindow;
|
||||
RecoveryModeWindow.Width = 460;
|
||||
|
Reference in New Issue
Block a user