core/libraries: HLE fiber reimplementation (#1836)

This commit is contained in:
Daniel R.
2024-12-24 13:33:00 +01:00
committed by GitHub
parent 0a4453b912
commit 2c0f986c52
6 changed files with 564 additions and 193 deletions

View File

@@ -53,6 +53,7 @@ Core::Tcb* TcbCtor(Pthread* thread, int initial) {
if (tcb) {
tcb->tcb_thread = thread;
tcb->tcb_fiber = nullptr;
}
return tcb;
}