X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Factions%2Fnotify.c;h=d03bacb2ebf16b7fcc4b97ca061c1e71977bc8a1;hp=ea68c75fd0f0c38eba8255e7374033ec1928d5dd;hb=3dd04a6a94950c91b0895e6da9da5f84db1e7abc;hpb=14ec7e8774bab3e31f173438c8e8fc655ee5ee14 diff --git a/src/common/actions/notify.c b/src/common/actions/notify.c index ea68c75fd..d03bacb2e 100644 --- a/src/common/actions/notify.c +++ b/src/common/actions/notify.c @@ -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(¬ify->parent, LTTNG_ACTION_TYPE_NOTIFY, NULL, lttng_action_notify_serialize, + lttng_action_notify_is_equal, lttng_action_notify_destroy); end: return ¬ify->parent;