Add type_specifier list node
[babeltrace.git] / formats / ctf / metadata / ctf-test / succeed / ctf-embedded-1.txt
1
2 trace {
3 major = 0;
4 major = 1;
5 uuid = "f816d884-6cea-11e0-ac7a-8f5f4e9f7724";
6 word_size = 32;
7 };
8
9 /* Architecture with 32-bit pointers, 32-bit integers, 32-bit longs */
10
11 typealias integer { size = 32; align = 32; signedness = false; } : uint32_t;
12 typealias integer { size = 64; align = 64; signedness = false; } : uint64_t;
13 typealias integer { size = 32; align = 32; signedness = false; } : void *;
14
15 stream {
16 id = 0;
17 event.header := struct {
18 uint32_t id;
19 uint64_t timestamp;
20 };
21 event.context := struct { /*
22 uint32_t thread_id; * This context belongs to all
23 void *func_called; * events in this stream.
24 void *called_from; */
25 uint32_t event_count; /* for debug */
26 };
27 };
28
29 /*
30 * All events have empty context/fields, because their field layout is
31 * replicated for all events of the stream (in this particular trace
32 * layout). See ctf-embedded-2.txt for a more compact layout.
33 */
34
35 event { name = invalid; id = 0; stream = 0; };
36 event { name = func_enter; id = 1; stream = 0; };
37 event { name = func_exit; id = 2; stream = 0; };
This page took 0.029678 seconds and 4 git commands to generate.