blob: 0d5b3c9820e3f54a27a1ff1c397476329c5555fb (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* SPDX-License-Identifier: LGPL-2.1-only */
/*
* The Rin Library – time module, benchmarking section
*
* Copyright (C) 2019 Gediminas Jakutis
*/
#include <time.h>
#include <errno.h>
#include <sys/resource.h>
#include "rin/time.h"
#include "rin/definitions.h"
#include "time_private.h"
static struct bench {
int status;
struct rusage runtime;
struct timespec wall;
} bench = {0};
int rin_bench_start(void)
{
if (bench.status) {
return EAGAIN;
}
bench.status = 1;
clock_gettime(RIN_CLOCK_WALL_COUNTER, &bench.wall);
getrusage(RUSAGE_SELF, &bench.runtime);
return 0;
}
int rin_bench_stop(struct rin_bench_result *res)
{
struct timespec wall;
struct rusage run;
if (!bench.status) {
return EAGAIN;
}
if (!res) {
return EINVAL;
}
getrusage(RUSAGE_SELF, &run);
clock_gettime(RIN_CLOCK_WALL_COUNTER, &wall);
res->wall = rin_time_sub(&wall, &bench.wall);
res->system = rin_timeval_sub(&run.ru_stime, &bench.runtime.ru_stime);
res->user = rin_timeval_sub(&run.ru_utime, &bench.runtime.ru_utime);
res->total = rin_timeval_add(&res->system, &res->user);
bench.status = 0;
return 0;
}
|