summaryrefslogtreecommitdiff
path: root/src/libstddjb/alarm_disable.c
blob: a383411a4887110cbd1c183313dab332a18c7606 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* ISC license. */

#include <skalibs/sysdeps.h>
#include <skalibs/alarm.h>

#ifdef SKALIBS_HASTIMER

#include <time.h>
#include "alarm-internal.h"

timer_t timer_here ;

void alarm_disable ()
{
  struct itimerspec stopit = { .it_value = { .tv_sec = 0, .tv_nsec = 0 }, .it_interval = { .tv_sec = 0, .tv_nsec = 0 } } ;
  timer_settime(timer_here, 0, &stopit, 0) ;
  timer_delete(timer_here) ;
}

#else
#ifdef SKALIBS_HASITIMER

#include <sys/time.h>

void alarm_disable ()
{
  struct itimerval stopit = { .it_value = { .tv_sec = 0, .tv_usec = 0 }, .it_interval = { .tv_sec = 0, .tv_usec = 0 } } ;
  setitimer(ITIMER_REAL, &stopit, 0) ;
}

#else

#include <unistd.h>

void alarm_disable ()
{
  alarm(0) ;
}

#endif
#endif