SoW-2019-0007-2: Dynamic Snapshot: Triggers send partial event payload with notifications
[lttng-tools.git] / src / common / actions / notify.c
index ea68c75fd0f0c38eba8255e7374033ec1928d5dd..03dcce73c06f92e17e0c2349526c76db0a3aa028 100644 (file)
@@ -23,6 +23,14 @@ int lttng_action_notify_serialize(struct lttng_action *action,
        return 0;
 }
 
+static
+bool lttng_action_notify_is_equal(const struct lttng_action *a,
+               const struct lttng_action *b)
+{
+       /* TODO check type ??? */
+       return true;
+}
+
 struct lttng_action *lttng_action_notify_create(void)
 {
        struct lttng_action_notify *notify;
@@ -34,6 +42,7 @@ struct lttng_action *lttng_action_notify_create(void)
 
        lttng_action_init(&notify->parent, LTTNG_ACTION_TYPE_NOTIFY, NULL,
                        lttng_action_notify_serialize,
+                       lttng_action_notify_is_equal,
                        lttng_action_notify_destroy);
 end:
        return &notify->parent;
This page took 0.023693 seconds and 5 git commands to generate.