Add text-based metadata header: /* TSDL
[babeltrace.git] / formats / ctf / metadata / ctf-test / tofix / ctf-redefine-type.txt
CommitLineData
5eda3dc2 1/* TSDL */
5594f671
MD
2typealias integer { size = 8; align = 8; signed = false; } := uint8_t;
3typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
4
5// Define newtype
6typealias uint32_t := newtype;
7
8trace {
9 // Hide newtype
10 typedef uint8_t newtype;
11
12 major = 0;
13 minor = 1;
14 uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564";
15 byte_order = le;
16 packet.header := struct {
17 uint8_t field;
18 };
19};
20
21event {
22 name = string;
23 fields := struct { string str; };
24};
This page took 0.024525 seconds and 4 git commands to generate.