Common Trace Format - initial commit
[babeltrace.git] / lib / types / types.c
1 /*
2 * Common Trace Format
3 *
4 * Types registry.
5 *
6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * Dual LGPL v2.1/GPL v2 license.
9 */
10
11 #include <ctf/ctf-types.h>
12 #include <glib.h>
13
14 struct type {
15 GQuark name;
16 size_t len; /* type length, in bits */
17 };
This page took 0.028598 seconds and 4 git commands to generate.