actions: implement is_equal
[lttng-tools.git] / src / common / actions / notify.c
index ea68c75fd0f0c38eba8255e7374033ec1928d5dd..d03bacb2ebf16b7fcc4b97ca061c1e71977bc8a1 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)
+{
+       /* There is no discriminant between notify actions. */
+       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.022525 seconds and 4 git commands to generate.