blob: 207a472982d1e6d9783afa418bf8b741ece2d8c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#define _GNU_SOURCE
#include <time.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
useconds_t ualarm(useconds_t value, useconds_t interval)
{
struct itimerval otimer;
const struct itimerval itimer = {
{ 0, interval },
{ 0, value}
};
if (setitimer(ITIMER_REAL, &itimer, &otimer) < 0) {
return -1;
}
return((otimer.it_value.tv_sec * 1000000) + otimer.it_value.tv_usec);
}
|