SoW-2020-0002: Trace Hit Counters
[lttng-tools.git] / src / common / conditions / condition.c
index e0b85e429d48c8a149364b7bfb2acf271daad751..4948dbd3ffe5385aede0ff4d3b0b42842692fce2 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <lttng/condition/condition-internal.h>
 #include <lttng/condition/buffer-usage-internal.h>
-#include <lttng/condition/event-rule-internal.h>
+#include <lttng/condition/on-event-internal.h>
 #include <lttng/condition/session-consumed-size-internal.h>
 #include <lttng/condition/session-rotation-internal.h>
 #include <common/macros.h>
@@ -170,8 +170,8 @@ ssize_t lttng_condition_create_from_payload(
        case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
                create_from_payload = lttng_condition_session_rotation_completed_create_from_payload;
                break;
-       case LTTNG_CONDITION_TYPE_EVENT_RULE_HIT:
-               create_from_payload = lttng_condition_event_rule_create_from_payload;
+       case LTTNG_CONDITION_TYPE_ON_EVENT:
+               create_from_payload = lttng_condition_on_event_create_from_payload;
                break;
        default:
                ERR("Attempted to create condition of unknown type (%i)",
@@ -230,7 +230,7 @@ const char *lttng_condition_type_str(enum lttng_condition_type type)
        case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
                return "session rotation completed";
 
-       case LTTNG_CONDITION_TYPE_EVENT_RULE_HIT:
+       case LTTNG_CONDITION_TYPE_ON_EVENT:
                return "event rule hit";
 
        default:
This page took 0.024833 seconds and 5 git commands to generate.