mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
svcSignalProcessWideKey doesn't actually return anything
This commit is contained in:
parent
0881fb9e0b
commit
ce394330a8
@ -51,7 +51,8 @@ static inline Result condvarWait(CondVar* c, Mutex* m)
|
|||||||
*/
|
*/
|
||||||
static inline Result condvarWake(CondVar* c, int num)
|
static inline Result condvarWake(CondVar* c, int num)
|
||||||
{
|
{
|
||||||
return svcSignalProcessWideKey(c, num);
|
svcSignalProcessWideKey(c, num);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -472,10 +472,9 @@ Result svcWaitProcessWideKeyAtomic(u32* key, u32* tag_location, u32 self_tag, u6
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Performs a condition variable wake-up operation in userspace.
|
* @brief Performs a condition variable wake-up operation in userspace.
|
||||||
* @return Result code.
|
|
||||||
* @note Syscall number 0x1D.
|
* @note Syscall number 0x1D.
|
||||||
*/
|
*/
|
||||||
Result svcSignalProcessWideKey(u32* key, s32 num);
|
void svcSignalProcessWideKey(u32* key, s32 num);
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user