Cleanup: Add whitelines after struct_size fields
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 16 Mar 2021 20:11:37 +0000 (16:11 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 16 Mar 2021 20:11:37 +0000 (16:11 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I78e521c17437a17b1a65fd4387ad422d2e79aa36

include/lttng/ust-events.h

index 18e4cd5541cf69985182c9006dbb58dd37ab18cf..059589f34853eedabf1ae0be447da55d733011d6 100644 (file)
@@ -258,6 +258,7 @@ struct lttng_ust_event_field {
  */
 struct lttng_ust_event_desc {
        uint32_t struct_size;                   /* Size of this structure. */
+
        const char *name;
        void (*probe_callback)(void);
        const struct lttng_event_ctx *ctx;      /* context */
@@ -368,6 +369,7 @@ enum lttng_ust_event_type {
  */
 struct lttng_ust_event_common {
        uint32_t struct_size;                           /* Size of this structure. */
+
        struct lttng_ust_event_common_private *priv;    /* Private event interface */
 
        enum lttng_ust_event_type type;
@@ -399,6 +401,7 @@ struct lttng_ust_event_recorder_private;
  */
 struct lttng_ust_event_recorder {
        uint32_t struct_size;                           /* Size of this structure. */
+
        struct lttng_ust_event_common *parent;          /* Inheritance by aggregation. */
        struct lttng_ust_event_recorder_private *priv;  /* Private event record interface */
 
@@ -547,6 +550,7 @@ struct lttng_ust_session_private;
  */
 struct lttng_session {
        uint32_t struct_size;                   /* Size of this structure */
+
        struct lttng_ust_session_private *priv; /* Private session interface */
 
        int active;                             /* Is trace session active ? */
This page took 0.025713 seconds and 4 git commands to generate.