23 Eylül 2020 Çarşamba

nanosleep metodu

Giriş 
Bu metod bir POSIX çağrısı. C diline ait değil

Örnek
Şöyle yaparız
#include <time.h>
struct timespec ts;
ts.tv_sec = 3;
ts.tv_nsec = 0;
nanosleep(&ts, NULL);

Hiç yorum yok:

Yorum Gönder