X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-kernel.h;h=68301967a15f7cae616f85f24b42afc2c9f83fe7;hb=d022620a4a3ce49862b49527c5e29d7ba6cce743;hp=66ca8dbdef5a9b8f5818855b6cb51c88820ef319;hpb=ffe600149a7608221985751e1bf293234bf2545c;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/trace-kernel.h b/src/bin/lttng-sessiond/trace-kernel.h index 66ca8dbde..68301967a 100644 --- a/src/bin/lttng-sessiond/trace-kernel.h +++ b/src/bin/lttng-sessiond/trace-kernel.h @@ -82,6 +82,8 @@ struct ltt_kernel_stream { int cpu; /* Format is %s_%d respectively channel name and CPU number. */ char name[DEFAULT_STREAM_NAME_LEN]; + uint64_t tracefile_size; + uint64_t tracefile_count; struct cds_list_head list; }; @@ -92,7 +94,6 @@ struct ltt_kernel_session { int consumer_fds_sent; unsigned int channel_count; unsigned int stream_count_global; - char *trace_path; struct ltt_kernel_metadata *metadata; struct ltt_kernel_channel_list channel_list; /* UID/GID of the user owning the session */ @@ -107,9 +108,11 @@ struct ltt_kernel_session { struct consumer_output *consumer; struct consumer_output *tmp_consumer; /* Tracing session id */ - unsigned int id; + uint64_t id; /* Session is started and active */ unsigned int started; + /* Tell or not if the session has to output the traces. */ + unsigned int output_traces; }; /* @@ -123,7 +126,7 @@ struct ltt_kernel_channel *trace_kernel_get_channel_by_name( /* * Create functions malloc() the data structure. */ -struct ltt_kernel_session *trace_kernel_create_session(char *path); +struct ltt_kernel_session *trace_kernel_create_session(void); struct ltt_kernel_channel *trace_kernel_create_channel( struct lttng_channel *chan); struct ltt_kernel_event *trace_kernel_create_event(struct lttng_event *ev);