mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-14 15:14:23 -04:00
kern: SendSyncRequestLight, ReplyAndReceiveLight
This commit is contained in:
parent
b6cb561c47
commit
8922bbd108
8 changed files with 360 additions and 14 deletions
|
@ -410,6 +410,9 @@ namespace ams::kern {
|
|||
void ClearCancellable() { this->cancellable = false; }
|
||||
void SetCancellable() { this->cancellable = true; }
|
||||
|
||||
constexpr u32 *GetLightSessionData() const { return this->light_ipc_data; }
|
||||
constexpr void SetLightSessionData(u32 *data) { this->light_ipc_data = data; }
|
||||
|
||||
bool HasWaiters() const { return !this->waiter_list.empty(); }
|
||||
|
||||
constexpr s64 GetLastScheduledTick() const { return this->last_scheduled_tick; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue