7
Як використовувати nanosleep () в C? Що таке `tim.tv_sec` та` tim.tv_nsec`?
Яка користь tim.tv_secі tim.tv_nsecв наступному? Як я можу заснути виконання протягом 500000мікросекунд? #include <stdio.h> #include <time.h> int main() { struct timespec tim, tim2; tim.tv_sec = 1; tim.tv_nsec = 500; if(nanosleep(&tim , &tim2) < 0 ) { printf("Nano sleep system call failed \n"); return -1; } printf("Nano sleep successfull \n"); return …