API cleanups, offset by bit.
[babeltrace.git] / formats / ctf / ctf.c
CommitLineData
fc93b2bd
MD
1/*
2 * BabelTrace - Common Trace Format (CTF)
3 *
4 * Format registration.
5 *
6 * Copyright (c) 2010 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include <babeltrace/format.h>
24#include <babeltrace/ctf/types.h>
25
26void __attribute__((constructor)) ctf_init(void);
27
28static const struct format ctf_format = {
29 .uint_read = ctf_uint_read,
30 .int_read = ctf_int_read,
31 .uint_write = ctf_uint_write,
32 .int_write = ctf_int_write,
33 .bitfield_unsigned_read = ctf_bitfield_unsigned_read,
34 .bitfield_signed_read = ctf_bitfield_signed_read,
35 .bitfield_unsigned_write = ctf_bitfield_unsigned_write,
36 .bitfield_signed_write = ctf_bitfield_signed_write,
0a46062b
MD
37 .double_read = ctf_double_read,
38 .double_write = ctf_double_write,
fc93b2bd
MD
39 .float_copy = ctf_float_copy,
40 .string_copy = ctf_string_copy,
448d3cc7
MD
41 .enum_read = ctf_enum_read,
42 .enum_write = ctf_enum_write,
fc93b2bd
MD
43};
44
45void ctf_init(void)
46{
47 int ret;
48
49 ctf_format->name = g_quark_from_static_string("ctf");
50 ret = bt_register_format(&ctf_format);
51 assert(!ret);
52}
698f0fe4
MD
53
54/* TODO: finalize */
This page took 0.024357 seconds and 4 git commands to generate.