Support escape characters in metadata strings
[babeltrace.git] / tests / ctf-traces / succeed / succeed3 / metadata
1 /* CTF 1.8 */
2 typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t;
3 typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t;
4
5 trace {
6 major = 0;
7 minor = 1;
8 test = "\"";
9 test2 = "?\x20\o040?";
10 test3 = '\n';
11 uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564";
12 byte_order = le;
13 packet.header := struct {
14 uint32_t magic;
15 uint8_t uuid[16];
16 };
17 };
18
19 stream {
20 packet.context := struct {
21 uint32_t content_size;
22 uint32_t packet_size;
23 };
24 };
25
26 event {
27 name = string;
28 fields := struct { string str; };
29 };
This page took 0.02933 seconds and 4 git commands to generate.