aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/abis/linux/time.h
blob: 3f49db3c4afce8970dada2a676d35c69085090a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _ABIBITS_TIME_H
#define _ABIBITS_TIME_H

#include <bits/posix/timeval.h>

struct itimerval {
	struct timeval it_interval;	/* Interval for periodic timer */
	struct timeval it_value;	/* Time until next expiration */
};

#define ITIMER_REAL	0
#define ITIMER_VIRTUAL	1
#define ITIMER_PROF	2

#endif // _ABIBITS_TIME_H