Update svcSleepThread definition

This commit is contained in:
Luke Street 2018-12-04 03:16:51 -05:00
parent bc2dff0361
commit 5f51188d14

View File

@ -242,10 +242,10 @@ void NORETURN svcExitThread(void);
/** /**
* @brief Sleeps the current thread for the specified amount of time. * @brief Sleeps the current thread for the specified amount of time.
* @return Result code. * @param[in] nano Number of nanoseconds to sleep, or 0, -1, -2 for yield.
* @note Syscall number 0x0B. * @note Syscall number 0x0B.
*/ */
Result svcSleepThread(u64 nano); void svcSleepThread(s64 nano);
/** /**
* @brief Gets a thread's priority. * @brief Gets a thread's priority.