It has been a while since I last worked on Aesalon proper.
[aesalon.git] / tests / cpu_test.c
blob291b56c644b08eaf3227ba760cc3f9888d0a29dc
1 #include <stdio.h>
2 #include <time.h>
4 int main(int argc, char *argv[]) {
5 time_t start = time(NULL);
7 while(time(NULL) < (start + 5)) ;
8 sleep(5);
9 start = time(NULL);
10 while(time(NULL) < (start + 5)) ;
12 return 0;