From c27937ce02b58c3fd8a889254fd771f479a9c638 Mon Sep 17 00:00:00 2001 From: Francis Deslauriers Date: Thu, 6 Jan 2022 18:30:51 -0500 Subject: [PATCH] Cleanup: events.h: add alignment comments and fix whitespace Signed-off-by: Francis Deslauriers Signed-off-by: Mathieu Desnoyers Change-Id: I327a85a2c3e259830795f181f218b1f3504f24fb --- .../syscalls/headers/syscalls_pointers_override.h | 2 +- include/lttng/events.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/instrumentation/syscalls/headers/syscalls_pointers_override.h b/include/instrumentation/syscalls/headers/syscalls_pointers_override.h index ed8041dd..0b7134b6 100644 --- a/include/instrumentation/syscalls/headers/syscalls_pointers_override.h +++ b/include/instrumentation/syscalls/headers/syscalls_pointers_override.h @@ -505,7 +505,7 @@ static_assert(((ARRAY_SIZE(lttng_pollfd_flag_fields) - 1) + POLL_FLAGS_PADDING_S #endif /* LTTNG_TRACEPOINT_TYPE_EXTERN */ LTTNG_TRACEPOINT_TYPE(PARAMS(const struct lttng_kernel_type_struct lttng_pollfd_flag_fields_struct), - PARAMS(lttng_kernel_static_type_struct_init( ARRAY_SIZE(lttng_pollfd_flag_fields), lttng_pollfd_flag_fields, 0))) + PARAMS(lttng_kernel_static_type_struct_init(ARRAY_SIZE(lttng_pollfd_flag_fields), lttng_pollfd_flag_fields, 0))) #ifndef LTTNG_TRACEPOINT_TYPE_EXTERN static const struct lttng_kernel_event_field *lttng_pollfd_fields[] = { 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 { -- 2.34.1