Fix: CTF writer: bt_ctf_field_unsigned_integer_set_value() -> *get_value()
[babeltrace.git] / include / babeltrace2-ctf-writer / clock-class.h
CommitLineData
924dc299
PP
1#ifndef BABELTRACE2_CTF_WRITER_CLOCK_CLASS_H
2#define BABELTRACE2_CTF_WRITER_CLOCK_CLASS_H
ec4644dd
FD
3
4/*
bbb7b5f0 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
ec4644dd
FD
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
ec4644dd
FD
24 */
25
26#include <stdint.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32struct bt_ctf_clock_class;
33
34extern struct bt_ctf_clock_class *bt_ctf_clock_class_create(const char *name,
35 uint64_t freq);
36
37extern const char *bt_ctf_clock_class_get_name(
38 struct bt_ctf_clock_class *clock_class);
39
40extern int bt_ctf_clock_class_set_name(struct bt_ctf_clock_class *clock_class,
41 const char *name);
42
43extern const char *bt_ctf_clock_class_get_description(
44 struct bt_ctf_clock_class *clock_class);
45
46extern int bt_ctf_clock_class_set_description(
47 struct bt_ctf_clock_class *clock_class,
48 const char *desc);
49
50extern uint64_t bt_ctf_clock_class_get_frequency(
51 struct bt_ctf_clock_class *clock_class);
52
53extern int bt_ctf_clock_class_set_frequency(
54 struct bt_ctf_clock_class *clock_class, uint64_t freq);
55
56extern uint64_t bt_ctf_clock_class_get_precision(
57 struct bt_ctf_clock_class *clock_class);
58
59extern int bt_ctf_clock_class_set_precision(
60 struct bt_ctf_clock_class *clock_class, uint64_t precision);
61
62extern int bt_ctf_clock_class_get_offset_s(
63 struct bt_ctf_clock_class *clock_class, int64_t *seconds);
64
65extern int bt_ctf_clock_class_set_offset_s(
66 struct bt_ctf_clock_class *clock_class, int64_t seconds);
67
68extern int bt_ctf_clock_class_get_offset_cycles(
69 struct bt_ctf_clock_class *clock_class, int64_t *cycles);
70
71extern int bt_ctf_clock_class_set_offset_cycles(
72 struct bt_ctf_clock_class *clock_class, int64_t cycles);
73
00409097 74extern bt_ctf_bool bt_ctf_clock_class_is_absolute(
ec4644dd
FD
75 struct bt_ctf_clock_class *clock_class);
76
77extern int bt_ctf_clock_class_set_is_absolute(
00409097 78 struct bt_ctf_clock_class *clock_class, bt_ctf_bool is_absolute);
ec4644dd 79
6162e6b7 80extern const uint8_t *bt_ctf_clock_class_get_uuid(
ec4644dd
FD
81 struct bt_ctf_clock_class *clock_class);
82
83extern int bt_ctf_clock_class_set_uuid(struct bt_ctf_clock_class *clock_class,
6162e6b7 84 const uint8_t *uuid);
ec4644dd
FD
85#ifdef __cplusplus
86}
87#endif
88
924dc299 89#endif /* BABELTRACE2_CTF_WRITER_CLOCK_CLASS_H */
This page took 0.033173 seconds and 4 git commands to generate.