X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=include%2Flttng%2Fevents.h;h=d25f4282dde15f79bd8e77202773307763fc6c1a;hb=c27937ce02b58c3fd8a889254fd771f479a9c638;hp=fa3e7e90591fd05bf136d62f896bb7d821397a65;hpb=0d1080f40a7ac09fce7120398746b1bfab3d32d8;p=lttng-modules.git diff --git a/include/lttng/events.h b/include/lttng/events.h index fa3e7e90..d25f4282 100644 --- a/include/lttng/events.h +++ b/include/lttng/events.h @@ -94,7 +94,7 @@ struct lttng_kernel_type_array { struct lttng_kernel_type_common parent; const struct lttng_kernel_type_common *elem_type; unsigned int length; /* Num. elems. */ - unsigned int alignment; + unsigned int alignment; /* Alignment in bytes before elements. */ enum lttng_kernel_string_encoding encoding; }; @@ -102,7 +102,7 @@ struct lttng_kernel_type_sequence { struct lttng_kernel_type_common parent; const char *length_name; /* Length field name. If NULL, use previous field. */ const struct lttng_kernel_type_common *elem_type; - unsigned int alignment; /* Alignment before elements. */ + unsigned int alignment; /* Alignment in bytes before elements. */ enum lttng_kernel_string_encoding encoding; }; @@ -110,7 +110,7 @@ struct lttng_kernel_type_struct { struct lttng_kernel_type_common parent; unsigned int nr_fields; const struct lttng_kernel_event_field * const *fields; /* Array of pointers to fields. */ - unsigned int alignment; + unsigned int alignment; /* Alignment in bits */ }; struct lttng_kernel_type_variant { @@ -118,7 +118,7 @@ struct lttng_kernel_type_variant { const char *tag_name; /* Tag field name. If NULL, use previous field. */ const struct lttng_kernel_event_field * const *choices; /* Array of pointers to fields. */ unsigned int nr_choices; - unsigned int alignment; + unsigned int alignment; /* Alignment in bytes */ }; struct lttng_kernel_enum_desc {