.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / include / lttng / notification / notification-internal.hpp
index 9837c359bf104408987d8dfec44be5ea9439c7b0..36b3d7f3839ba6cd06ea0974324a84d2a51cefbc 100644 (file)
@@ -24,7 +24,7 @@ struct lttng_payload_view;
 struct lttng_notification {
        using uptr = std::unique_ptr<
                lttng_notification,
-               lttng::details::create_unique_class<lttng_notification,
+               lttng::memory::create_deleter_class<lttng_notification,
                                                    lttng_notification_destroy>::deleter>;
 
        struct lttng_trigger *trigger;
@@ -38,23 +38,21 @@ struct lttng_notification_comm {
        char payload[];
 } LTTNG_PACKED;
 
-struct lttng_notification *lttng_notification_create(
-               struct lttng_trigger *trigger,
-               struct lttng_evaluation *evaluation);
+struct lttng_notification *lttng_notification_create(struct lttng_trigger *trigger,
+                                                    struct lttng_evaluation *evaluation);
 
 int lttng_notification_serialize(const struct lttng_notification *notification,
-               struct lttng_payload *payload);
+                                struct lttng_payload *payload);
 
-ssize_t lttng_notification_create_from_payload(
-               struct lttng_payload_view *view,
-               struct lttng_notification **notification);
+ssize_t lttng_notification_create_from_payload(struct lttng_payload_view *view,
+                                              struct lttng_notification **notification);
 
-const struct lttng_condition *lttng_notification_get_const_condition(
-               const struct lttng_notification *notification);
-const struct lttng_evaluation *lttng_notification_get_const_evaluation(
-               const struct lttng_notification *notification);
+const struct lttng_condition *
+lttng_notification_get_const_condition(const struct lttng_notification *notification);
+const struct lttng_evaluation *
+lttng_notification_get_const_evaluation(const struct lttng_notification *notification);
 
-const struct lttng_trigger *lttng_notification_get_const_trigger(
-               const struct lttng_notification *notification);
+const struct lttng_trigger *
+lttng_notification_get_const_trigger(const struct lttng_notification *notification);
 
 #endif /* LTTNG_NOTIFICATION_INTERNAL_H */
This page took 0.04195 seconds and 4 git commands to generate.