1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* timer_settime.c - set the timer.
*/
#include <errno.h>
#include <stdlib.h>
#include <time.h>
#include <sys/syscall.h>
#include "kernel-posix-timers.h"
#ifdef __NR_timer_settime
#define __NR___syscall_timer_settime __NR_timer_settime
static inline _syscall4(int, __syscall_timer_settime, kernel_timer_t, ktimerid,
int, flags, const void *, value, void *, ovalue);
/* Set the expiration time for a timer */
int timer_settime(timer_t timerid, int flags, const struct itimerspec *value,
struct itimerspec *ovalue)
{
struct timer *kt = (struct timer *) timerid;
/* Set timeout */
return __syscall_timer_settime(kt->ktimerid, flags, value, ovalue);
}
#endif
|