2 typealias integer { size = 8; align = 8; signed = false; } := uint8_t;
3 typealias integer { size = 16; align = 8; signed = false; } := uint16_t;
4 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
5 typealias integer { size = 64; align = 8; signed = false; } := uint64_t;
6 typealias integer { size = 64; align = 8; signed = false; } := unsigned long;
7 typealias integer { size = 5; align = 1; signed = false; } := uint5_t;
8 typealias integer { size = 27; align = 1; signed = false; } := uint27_t;
13 uuid = "59052333-e490-4ed9-af7a-b652437fba9a";
15 packet.header := struct {
25 tracer_name = "lttng-ust";
32 uuid = "5f3ed925-9d73-4637-b8e4-02077abc8c8f";
33 description = "Monotonic Clock";
34 freq = 1000000000; /* Frequency, in Hz */
35 /* clock value offset from Epoch is: offset * (1/freq) */
36 offset = 1375437179542680815;
40 size = 27; align = 1; signed = false;
41 map = clock.monotonic.value;
42 } := uint27_clock_monotonic_t;
45 size = 32; align = 8; signed = false;
46 map = clock.monotonic.value;
47 } := uint32_clock_monotonic_t;
50 size = 64; align = 8; signed = false;
51 map = clock.monotonic.value;
52 } := uint64_clock_monotonic_t;
54 struct packet_context {
55 uint64_clock_monotonic_t timestamp_begin;
56 uint64_clock_monotonic_t timestamp_end;
57 uint64_t content_size;
59 unsigned long events_discarded;
63 struct event_header_compact {
64 enum : uint5_t { compact = 0 ... 30, extended = 31 } id;
67 uint27_clock_monotonic_t timestamp;
71 uint64_clock_monotonic_t timestamp;
76 struct event_header_large {
77 enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id;
80 uint32_clock_monotonic_t timestamp;
84 uint64_clock_monotonic_t timestamp;
91 event.header := struct event_header_compact;
92 packet.context := struct packet_context;
96 name = "sequence event";
101 integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } __seq_int_field_length;
102 integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } _seq_int_field[ __seq_int_field_length ];
103 integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } __seq_long_field_length;
104 integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } _seq_long_field[ __seq_long_field_length ];