Standard symbolic constants and types. More...
Go to the source code of this file.
Functions | |
unsigned | sleep (unsigned seconds) |
Suspend execution for an interval of time. More... | |
int | usleep (useconds_t usec) |
Suspend execution for microsecond intervals. More... | |
Standard symbolic constants and types.
http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html
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 cocmpletion. |