svcSignalProcessWideKey doesn't actually return anything

This commit is contained in:
fincs 2019-12-18 00:40:27 +01:00
parent 0881fb9e0b
commit ce394330a8
No known key found for this signature in database
GPG Key ID: 62C7609ADA219C60
2 changed files with 3 additions and 3 deletions

View File

@ -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;
} }
/** /**

View File

@ -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);
///@} ///@}