rename loop.c to diff.c

This commit is contained in:
Siegfried Kienzle
2017-04-03 15:31:18 +02:00
parent 60a9c97758
commit 2f29dc80ce

View File

@@ -1,16 +0,0 @@
#include<stdio.h>
#include<time.h>
#include<pthread.h>
int main(int argc, char *argv[])
{
struct timespec time1, time2;
time_t start, ende;
time1.tv_sec = 0;
time1.tv_nsec = 500000000000L;
time(&start);
clock_nanosleep(CLOCK_REALTIME, 0, &deadline, NULL);
time(&ende);
return 0;
}