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
42
43
44
45
46
47
48
49
50
51
|
/* ISC license. */
#include <skalibs/sysdeps.h>
#include <skalibs/tai.h>
#if defined(SKALIBS_HASCLOCKRT) && (defined(SKALIBS_HASCLOCKMON) || defined(SKALIBS_HASCLOCKBOOT))
#include <time.h>
int tain_stopwatch_init (tain_t *now, clock_t cl, tain_t *offset)
{
tain_t a, b ;
struct timespec ts ;
if (clock_gettime(cl, &ts) < 0) return 0 ;
if (!tain_from_timespec(&b, &ts)) return 0 ;
if (!tain_wallclock_read(&a)) return 0 ;
tain_sub(offset, &a, &b) ;
*now = a ;
return 1 ;
}
int tain_stopwatch_read (tain_t *a, clock_t cl, tain_t const *offset)
{
struct timespec ts ;
if (clock_gettime(cl, &ts) < 0) return 0 ;
if (!tain_from_timespec(a, &ts)) return 0 ;
tain_add(a, a, offset) ;
return 1 ;
}
#else
#include <errno.h>
int tain_stopwatch_init (tain_t *now, clock_t cl, tain_t *offset)
{
(void)now ;
(void)cl ;
(void)offset ;
return (errno = ENOSYS, 0) ;
}
int tain_stopwatch_read (tain_t *now, clock_t cl, tain_t const *offset)
{
(void)now ;
(void)cl ;
(void)offset ;
return (errno = ENOSYS, 0) ;
}
#endif
|