Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / stream / fail / cross-packet-event-len-of-sequence / metadata
CommitLineData
c29ecb47
MD
1/* CTF 1.8 */
2typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t;
3typealias integer { size = 32; align = 8; signed = false; base = hex; } := uint32_t;
4typealias integer { size = 64; align = 8; signed = false; base = hex; } := uint64_t;
5
6trace {
83fcdab0
FD
7 major = 1;
8 minor = 8;
c29ecb47
MD
9 uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564";
10 byte_order = le;
11 packet.header := struct {
12 uint32_t magic;
13 uint8_t uuid[16];
14 };
15};
16
17stream {
18 packet.context := struct {
19 uint32_t packet_size;
20 uint32_t content_size;
21 };
22};
23
24event {
25 name = myevent;
26 fields := struct { uint64_t len; uint32_t blah[len]; };
27};
This page took 0.023364 seconds and 4 git commands to generate.