early-access version 3440

This commit is contained in:
pineappleEA
2023-03-08 04:41:37 +01:00
parent 294b1b8c34
commit fcd34e75d7
23 changed files with 159 additions and 67 deletions

View File

@@ -82,6 +82,9 @@ Result CreateThread(Core::System& system, Handle* out_handle, VAddr entry_point,
// Commit the thread reservation.
thread_reservation.Commit();
// Clone the current fpu status to the new thread.
thread->CloneFpuStatus();
// Register the new thread.
KThread::Register(kernel, thread);