Make some bt_param_validation_map_value_entry_descr variables static
[babeltrace.git] / src / plugins / utils / counter / counter.c
index 82d1b907e45b2d49ea43bf92e23d1a44ebb35cca..9fe62a349096b603732eccf40fbc53161ca14b40 100644 (file)
@@ -30,6 +30,7 @@
 #include "common/common.h"
 #include "common/assert.h"
 #include <inttypes.h>
+#include <stdbool.h>
 #include <stdint.h>
 #include "plugins/common/param-validation/param-validation.h"
 
@@ -113,6 +114,7 @@ void try_print_last(struct counter *counter)
        }
 }
 
+static
 void destroy_private_counter_data(struct counter *counter)
 {
        if (counter) {
@@ -136,6 +138,7 @@ void counter_finalize(bt_self_component_sink *comp)
        g_free(counter);
 }
 
+static
 struct bt_param_validation_map_value_entry_descr counter_params[] = {
        { "step", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_UNSIGNED_INTEGER } },
        { "hide-zero", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_BOOL } },
@@ -256,7 +259,7 @@ bt_component_class_sink_consume_method_status counter_consume(
 
        counter = bt_self_component_get_data(
                        bt_self_component_sink_as_self_component(comp));
-       BT_ASSERT(counter);
+       BT_ASSERT_DBG(counter);
 
        if (G_UNLIKELY(!counter->msg_iter)) {
                try_print_last(counter);
@@ -280,7 +283,7 @@ bt_component_class_sink_consume_method_status counter_consume(
                for (i = 0; i < msg_count; i++) {
                        const bt_message *msg = msgs[i];
 
-                       BT_ASSERT(msg);
+                       BT_ASSERT_DBG(msg);
                        switch (bt_message_get_type(msg)) {
                        case BT_MESSAGE_TYPE_EVENT:
                                counter->count.event++;
This page took 0.024638 seconds and 4 git commands to generate.