core: hle: kernel: svc_types: Add type definitions for KAddressArbiter.
This commit is contained in:
parent
fb43b8efd2
commit
4bbf173fc1
|
@ -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…
Reference in New Issue