X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fsnapshot.h;h=12641860ad5c940b2e926b88fd2f121a08b3e739;hp=bdf0570366061c1691745a0a08c5ba4ceb5cc77e;hb=b178f53e90c376dd44b020535c32649edef8f80e;hpb=1bfe73287bb3776cdba5a76d5a812ef79820bf10 diff --git a/src/bin/lttng-sessiond/snapshot.h b/src/bin/lttng-sessiond/snapshot.h index bdf057036..12641860a 100644 --- a/src/bin/lttng-sessiond/snapshot.h +++ b/src/bin/lttng-sessiond/snapshot.h @@ -28,6 +28,7 @@ #include "consumer.h" struct consumer_output; +struct ltt_session; struct snapshot_output { uint32_t id; @@ -72,11 +73,13 @@ void snapshot_add_output(struct snapshot *snapshot, /* Snapshot output object. */ struct snapshot_output *snapshot_output_alloc(void); void snapshot_output_destroy(struct snapshot_output *obj); -int snapshot_output_init(uint64_t max_size, const char *name, +int snapshot_output_init(const struct ltt_session *session, + uint64_t max_size, const char *name, const char *ctrl_url, const char *data_url, struct consumer_output *consumer, struct snapshot_output *output, struct snapshot *snapshot); -int snapshot_output_init_with_uri(uint64_t max_size, const char *name, +int snapshot_output_init_with_uri(const struct ltt_session *session, + uint64_t max_size, const char *name, struct lttng_uri *uris, size_t nb_uri, struct consumer_output *consumer, struct snapshot_output *output, struct snapshot *snapshot);