mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-14 22:53:15 +00:00
core/libraries: HLE fiber reimplementation (#1836)
This commit is contained in:
parent
0a4453b912
commit
2c0f986c52
6 changed files with 564 additions and 193 deletions
|
@ -9,6 +9,10 @@ namespace Xbyak {
|
|||
class CodeGenerator;
|
||||
}
|
||||
|
||||
namespace Libraries::Fiber {
|
||||
struct OrbisFiberContext;
|
||||
}
|
||||
|
||||
namespace Core {
|
||||
|
||||
union DtvEntry {
|
||||
|
@ -20,6 +24,7 @@ struct Tcb {
|
|||
Tcb* tcb_self;
|
||||
DtvEntry* tcb_dtv;
|
||||
void* tcb_thread;
|
||||
::Libraries::Fiber::OrbisFiberContext* tcb_fiber;
|
||||
};
|
||||
|
||||
#ifdef _WIN32
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue