X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=ltt%2Fltt-private.h;h=593ce4413b44cf6e98ed930275a208f0711a95bf;hb=4a24e7a380459d3e748fcc501898e293fe9e34d3;hp=23e94cc5e3de48df4b7b38445293fbc99aeb10d0;hpb=f024106895c1709ae029285835320085e4494582;p=lttv.git diff --git a/ltt/ltt-private.h b/ltt/ltt-private.h index 23e94cc5..593ce441 100644 --- a/ltt/ltt-private.h +++ b/ltt/ltt-private.h @@ -66,7 +66,7 @@ typedef guint32 uint32_t; typedef guint64 uint64_t; /* Subbuffer header */ -struct ltt_subbuffer_header_2_5 { +struct ltt_subbuffer_header_2_6 { uint64_t cycle_count_begin; /* Cycle count at subbuffer start */ uint64_t cycle_count_end; /* Cycle count at subbuffer end */ uint32_t magic_number; /* @@ -99,7 +99,7 @@ struct ltt_subbuffer_header_2_5 { char header_end[0]; /* End of header */ }; -typedef struct ltt_subbuffer_header_2_5 ltt_subbuffer_header_t; +typedef struct ltt_subbuffer_header_2_6 ltt_subbuffer_header_t; /* * Return header size without padding after the structure. Don't use packed @@ -165,7 +165,7 @@ struct LttTracefile { uint32_t subbuf_corrupt; GArray *buf_index; /* index mapping buffer index to offset */ - + uint64_t end_timestamp; /* Last timestamp of file */ /* Current event */ LttEvent event; //Event currently accessible in the trace @@ -196,13 +196,12 @@ struct LttSystemDescription { /* * Calculate the offset needed to align the type. - * If alignment is 0, alignment is disactivated. + * If alignment is 0, alignment is deactivated. * else, the function returns the offset needed to * align align_drift on the alignment value. * - * Do not limit alignment on architecture size anymore, - * because uint64_t types are aligned on 64-bit even - * on 32-bit archs. + * align align_drift on the alignment value (should be + * the size of the architecture). */ static inline unsigned int ltt_align(size_t align_drift, size_t size_of_type,