1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <stdio.h> #include <time.h> int main(void) { struct timespec timeout; timeout.tv_sec = 0; timeout.tv_nsec = 100000000; /* 0.1 seconds */ if (nanosleep(&timeout, NULL)) { perror("nanosleep"); return 1; } return 0; }