mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 06:50:08 +00:00
core: hle: kernel: svc_types: Add type definitions for KAddressArbiter.
This commit is contained in:
parent
fb43b8efd2
commit
4bbf173fc1
1 changed files with 12 additions and 0 deletions
|
@ -65,4 +65,16 @@ struct MemoryInfo {
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue