summaryrefslogtreecommitdiff
path: root/tests/time_enjoyment.h
blob: 65faa985651ccc76e9fbf41701324c124dd975bb (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
60
61
62
63
64
65
66
#ifndef STRACE_TESTS_TIME_ENJOYMENT_H
# define STRACE_TESTS_TIME_ENJOYMENT_H

# include <fcntl.h>
# include <sched.h>
# include <time.h>
# include <sys/types.h>
# include <sys/stat.h>

enum {
	NUM_USER_ITERS_SQRT = 2000,
	NUM_USER_ITERS = NUM_USER_ITERS_SQRT * NUM_USER_ITERS_SQRT,
	READ_BUF_SIZE = 65536,
	READ_ITER = 128,
};

static inline uint64_t
nsecs(struct timespec *ts)
{
	return (uint64_t) ts->tv_sec * 1000000000 + ts->tv_nsec;
}

static inline void
enjoy_time(uint64_t cputime_limit)
{
	struct timespec ts = { 0 };
	volatile int dummy = 0;

	/* Enjoying my user time */
	for (size_t i = 0; i < NUM_USER_ITERS_SQRT; ++i) {
		if (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts) == 0) {
			if (nsecs(&ts) >= cputime_limit)
				break;
		}

		for (size_t j = 0; j < NUM_USER_ITERS; ++j)
			++dummy;
	}

	/* Enjoying my system time */
	ssize_t ret;
	int fd;
	char buf[READ_BUF_SIZE];

	while (clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts) == 0) {
		for (size_t i = 0; i < READ_ITER; i++) {
			/* We are fine even if the calls fail. */
			fd = open("/proc/self/status", O_RDONLY);
			/*
			 * Working around "ignoring return value of 'read'
			 * declared with attribute 'warn_unused_result'".
			 */
			ret = read(fd, buf, sizeof(buf));
			close(fd);
			if (ret)
				continue;
		}

		if (nsecs(&ts) >= cputime_limit * 3)
			break;

		sched_yield();
	}
}

#endif /* !STRACE_TESTS_TIME_ENJOYMENT_H */