notification: fetch capture payload on notification reception
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread-internal.h
index 0403527dca1f4f5b67d0f25cbe0cb91efee27eda..e6467dc27cb107695f4445888ee52f8abf0d27fd 100644 (file)
@@ -82,6 +82,8 @@ struct channel_info {
 struct lttng_event_notifier_notification {
        uint64_t tracer_token;
        enum lttng_domain_type type;
+       size_t capture_buf_size;
+       char *capture_buffer;
 };
 
 struct notification_client_list_element {
@@ -248,10 +250,15 @@ int notification_thread_client_communication_update(
                notification_client_id id,
                enum client_transmission_status transmission_status);
 
+/*
+ * Takes ownership of the payload if present.
+ */
 LTTNG_HIDDEN
 struct lttng_event_notifier_notification *lttng_event_notifier_notification_create(
                uint64_t tracer_token,
-               enum lttng_domain_type domain);
+               enum lttng_domain_type domain,
+               char *payload,
+               size_t payload_size);
 
 LTTNG_HIDDEN
 void lttng_event_notifier_notification_destroy(
This page took 0.023654 seconds and 4 git commands to generate.