mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-18 00:54:23 -04:00
kern: KConditionVariable arbiter functions now static
This commit is contained in:
parent
572cbd8619
commit
d80ad222cc
3 changed files with 4 additions and 12 deletions
|
@ -29,8 +29,8 @@ namespace ams::kern {
|
|||
constexpr KConditionVariable() : m_tree() { /* ... */ }
|
||||
|
||||
/* Arbitration. */
|
||||
Result SignalToAddress(KProcessAddress addr);
|
||||
Result WaitForAddress(ams::svc::Handle handle, KProcessAddress addr, u32 value);
|
||||
static Result SignalToAddress(KProcessAddress addr);
|
||||
static Result WaitForAddress(ams::svc::Handle handle, KProcessAddress addr, u32 value);
|
||||
|
||||
/* Condition variable. */
|
||||
void Signal(uintptr_t cv_key, s32 count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue