clock override: introduce getter API for lttng tools
[lttng-ust.git] / include / lttng / ust-clock.h
CommitLineData
ded1a808 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
ded1a808 3 *
c0c0989a 4 * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
ded1a808
MD
5 */
6
c0c0989a
MJ
7#ifndef LTTNG_UST_CLOCK_H
8#define LTTNG_UST_CLOCK_H
9
ded1a808
MD
10#include <stdint.h>
11#include <stddef.h>
12
13/*
14 * Set each callback for the trace clock override, and then enable the
15 * override. Those functions return negative error values on error, 0 on
16 * success.
17 */
18
33b563d6
MD
19typedef uint64_t (*lttng_ust_clock_read64_function)(void);
20typedef uint64_t (*lttng_ust_clock_freq_function)(void);
21typedef int (*lttng_ust_clock_uuid_function)(char *uuid);
22typedef const char *(*lttng_ust_clock_name_function)(void);
23typedef const char *(*lttng_ust_clock_description_function)(void);
24
ded1a808 25/*
33b563d6 26 * Set/Get clock override read callback. This callback should return the
ded1a808
MD
27 * current clock time (a 64-bit monotonic counter).
28 */
33b563d6
MD
29int lttng_ust_trace_clock_set_read64_cb(lttng_ust_clock_read64_function read64_cb);
30int lttng_ust_trace_clock_get_read64_cb(lttng_ust_clock_read64_function *read64_cb);
ded1a808
MD
31
32/*
33b563d6 33 * Set/Get clock override frequency callback. This callback should return
ded1a808
MD
34 * the frequency of the clock in cycles per second.
35 */
33b563d6
MD
36int lttng_ust_trace_clock_set_freq_cb(lttng_ust_clock_freq_function freq_cb);
37int lttng_ust_trace_clock_get_freq_cb(lttng_ust_clock_freq_function *freq_cb);
ded1a808
MD
38
39/*
33b563d6 40 * Set/Get clock override unique identifier.
ded1a808
MD
41 * LTTNG_UST_UUID_STR_LEN is the maximum length of uuid string. Includes
42 * final \0.
43 */
44#define LTTNG_UST_UUID_STR_LEN 37
45
33b563d6
MD
46int lttng_ust_trace_clock_set_uuid_cb(lttng_ust_clock_uuid_function uuid_cb);
47int lttng_ust_trace_clock_get_uuid_cb(lttng_ust_clock_uuid_function *uuid_cb);
ded1a808
MD
48
49/*
33b563d6 50 * Set/Get clock override name.
ded1a808 51 */
33b563d6
MD
52int lttng_ust_trace_clock_set_name_cb(lttng_ust_clock_name_function name_cb);
53int lttng_ust_trace_clock_get_name_cb(lttng_ust_clock_name_function *name_cb);
ded1a808
MD
54
55/*
33b563d6 56 * Set/Get clock override description.
ded1a808 57 */
33b563d6
MD
58int lttng_ust_trace_clock_set_description_cb(lttng_ust_clock_description_function description_cb);
59int lttng_ust_trace_clock_get_description_cb(lttng_ust_clock_description_function *description_cb);
ded1a808
MD
60
61/*
62 * Use the clock override rather than the default clock.
63 */
64int lttng_ust_enable_trace_clock_override(void);
65
66#endif /* LTTNG_UST_CLOCK_H */
This page took 0.028855 seconds and 4 git commands to generate.