Update svcSleepThread definition

This commit is contained in:
Luke Street 2018-12-04 03:16:51 -05:00 committed by yellows8
parent 567828f44e
commit 1415df75e4

View File

@ -245,10 +245,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.