|
cctools
|
#include <time.h>Go to the source code of this file.
Functions | |
| void | sleep_until (time_t stoptime) |
| Sleep until a specific time. More... | |
| void | sleep_for (time_t interval) |
| Sleep for a specific interval of time. More... | |
Sleep for a specified amount of time. Note that the standard Unix sleep() may be interrupted for a number of reasons. These routines will retry sleep() until the desired condition is reached.
| void sleep_until | ( | time_t | stoptime | ) |
Sleep until a specific time.
| stoptime | The absolute time to wait for. |
| void sleep_for | ( | time_t | interval | ) |
Sleep for a specific interval of time.
| interval | The number of seconds to wait. |