[go: up one dir, main page]

File: gettime.h

package info (click to toggle)
fio 3.33-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,896 kB
  • sloc: ansic: 78,615; sh: 5,191; python: 4,795; makefile: 832; yacc: 204; lex: 184
file content (49 lines) | stat: -rw-r--r-- 895 bytes parent folder | download | duplicates (4)
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
#ifndef FIO_GETTIME_H
#define FIO_GETTIME_H

#include <sys/time.h>

#include "arch/arch.h"
#include "lib/seqlock.h"

/*
 * Clock sources
 */
enum fio_cs {
	CS_GTOD		= 1,
	CS_CGETTIME,
	CS_CPUCLOCK,
	CS_INVAL,
};

extern int fio_get_mono_time(struct timespec *);
extern void fio_gettime(struct timespec *, void *);
extern void fio_gtod_init(void);
extern void fio_clock_init(void);
extern int fio_start_gtod_thread(void);
extern int fio_monotonic_clocktest(int debug);
extern void fio_local_clock_init(void);

extern struct fio_ts {
	struct seqlock seqlock;
	struct timespec ts;
} *fio_ts;

static inline int fio_gettime_offload(struct timespec *ts)
{
	unsigned int seq;

	if (!fio_ts)
		return 0;

	do {
		seq = read_seqlock_begin(&fio_ts->seqlock);
		*ts = fio_ts->ts;
	} while (read_seqlock_retry(&fio_ts->seqlock, seq));

	return 1;
}

extern void fio_gtod_set_cpu(unsigned int cpu);

#endif