7b953dbc5efebcfd13e28d3afc3872cf9fdd26bb
[lttng-modules.git] / probes / lttng-type-list.h
1 /*
2 * lttng-type-list.h
3 *
4 * Copyright (C) 2010-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * Dual LGPL v2.1/GPL v2 license.
7 */
8
9 /* Type list, used to create metadata */
10
11 /* Enumerations */
12 TRACE_EVENT_ENUM(hrtimer_mode,
13 V(HRTIMER_MODE_ABS),
14 V(HRTIMER_MODE_REL),
15 V(HRTIMER_MODE_PINNED),
16 V(HRTIMER_MODE_ABS_PINNED),
17 V(HRTIMER_MODE_REL_PINNED),
18 R(HRTIMER_MODE_UNDEFINED, 0x04, 0x20), /* Example (to remove) */
19 )
20
21 TRACE_EVENT_TYPE(hrtimer_mode, enum, unsigned char)
This page took 0.029503 seconds and 3 git commands to generate.