mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 00:55:45 +00:00
core: hle: kernel: svc_types: Add type definitions for KAddressArbiter.
This commit is contained in:
parent
eeb0493b5d
commit
f3f7d42d63
1 changed files with 12 additions and 0 deletions
|
@ -65,4 +65,16 @@ struct MemoryInfo {
|
||||||
u32 padding{};
|
u32 padding{};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum class SignalType : u32 {
|
||||||
|
Signal = 0,
|
||||||
|
SignalAndIncrementIfEqual = 1,
|
||||||
|
SignalAndModifyByWaitingCountIfEqual = 2,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class ArbitrationType : u32 {
|
||||||
|
WaitIfLessThan = 0,
|
||||||
|
DecrementAndWaitIfLessThan = 1,
|
||||||
|
WaitIfEqual = 2,
|
||||||
|
};
|
||||||
|
|
||||||
} // namespace Kernel::Svc
|
} // namespace Kernel::Svc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue