Make all traces explicitly support the CTF 1.8 spec
[ctf-testsuite.git] / tests / 1.8 / regression / stream / fail / cross-packet-event-float / metadata
CommitLineData
03d34581
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;
5typealias floating_point { exp_dig = 11; mant_dig = 53; } := double;
6
7trace {
83fcdab0
FD
8 major = 1;
9 minor = 8;
03d34581
MD
10 uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564";
11 byte_order = le;
12 packet.header := struct {
13 uint32_t magic;
14 uint8_t uuid[16];
15 };
16};
17
18stream {
19 packet.context := struct {
20 uint32_t packet_size;
21 uint32_t content_size;
22 };
23};
24
25event {
26 name = myevent;
27 fields := struct { double f; };
28};
This page took 0.02431 seconds and 4 git commands to generate.