blob: 0e85516843ee1376164bc89d98a1defffdb418be (
plain)
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
|
/*
* timer-getoverr.c - get the timer overrun count.
*/
#include <errno.h>
#include <time.h>
#include <sys/syscall.h>
#include "kernel-posix-timers.h"
#ifdef __NR_timer_getoverrun
#define __NR___syscall_timer_getoverrun __NR_timer_getoverrun
static __inline__ _syscall1(int, __syscall_timer_getoverrun, kernel_timer_t,
ktimerid);
/* Get the timer overrun count */
int timer_getoverrun(timer_t timerid)
{
struct timer *kt = (struct timer *)timerid;
/* Get the information from the kernel */
return __syscall_timer_getoverrun(kt->ktimerid);
}
#endif
|