|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <threads.h> | ||
int thrd_sleep(conststruct timespec* duration, struct timespec* remaining); | (since C11) | |
Blocks the execution of the current thread forat least until theTIME_UTC based duration pointed to byduration has elapsed.
The sleep may resume earlier if asignal that is not ignored is received. In such case, ifremaining is notNULL, the remaining time duration is stored into the object pointed to byremaining.
Contents |
| duration | - | pointer to the duration to sleep for |
| remaining | - | pointer to the object to put the remaining time on interruption. May beNULL, in which case it is ignored |
0 on successful sleep,-1 if a signal occurred, other negative value if an error occurred.
duration andremaining may point at the same object, which simplifies re-running the function after a signal.
The actual sleep time may be longer than requested because it is rounded up to the timer granularity and because of scheduling and context switching overhead.
The POSIX equivalent of this function isnanosleep.
Output:
Time: Mon Feb 2 16:18:41 2015Time: Mon Feb 2 16:18:42 2015
(C11) | yields the current time slice (function)[edit] |
C++ documentation forsleep_for | |