mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 06:27:47 +00:00
kernel: implement light IPC
This commit is contained in:
parent
9046851d9f
commit
f486fe3971
18 changed files with 813 additions and 20 deletions
|
@ -385,6 +385,13 @@ public:
|
|||
m_cancellable = false;
|
||||
}
|
||||
|
||||
u32* GetLightSessionData() const {
|
||||
return m_light_ipc_data;
|
||||
}
|
||||
void SetLightSessionData(u32* data) {
|
||||
m_light_ipc_data = data;
|
||||
}
|
||||
|
||||
bool IsTerminationRequested() const {
|
||||
return m_termination_requested || GetRawState() == ThreadState::Terminated;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue