Luna/libc/include/bits/itimer.h
apio 678121c3ed
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add setitimer()
2023-11-16 21:48:18 +01:00

19 lines
301 B
C

/* bits/itimer.h: Constants for setitimer() and getitimer(). */
#ifndef _BITS_ITIMER_H
#define _BITS_ITIMER_H
#include <bits/timespec.h>
#define ITIMER_REAL 0
#define ITIMER_VIRTUAL 1
#define ITIMER_PROF 2
struct itimerval
{
struct timeval it_interval;
struct timeval it_value;
};
#endif