aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-nanosleep.c
blob: 4b25ca4cfbf9441a276aab1d35b9ce42e186b2dc (plain) (blame)
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;
}