FreeRTOS:
POSIX
|
Return to main page ↑ |
Implementation of functions in unistd.h. More...
Functions | |
unsigned | sleep (unsigned seconds) |
Suspend execution for an interval of time. More... | |
int | usleep (useconds_t usec) |
Suspend execution for microsecond intervals. More... | |
Implementation of functions in unistd.h.
unsigned sleep | ( | unsigned | seconds | ) |
Suspend execution for an interval of time.
http://pubs.opengroup.org/onlinepubs/9699919799/functions/sleep.html
[in] | seconds | The number of seconds to suspend execution. |
0 | - Upon successful completion. |
int usleep | ( | useconds_t | usec | ) |
Suspend execution for microsecond intervals.
This is a useful, non-POSIX function.
[in] | usec | The number of microseconds to suspend execution. |
0 | - Upon successful completion. |