X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-kernel.h;h=21ffd336d51b90b77f0c31b36ab8105e2f4b5b10;hp=9050c4d044dad7185572bdec2f09430e41b15f2f;hb=1950109e7a08d8064ef5b1f446524274b4fa72d5;hpb=fdd9eb17f6b6928771744bb40bb2283ce3340033 diff --git a/src/bin/lttng-sessiond/trace-kernel.h b/src/bin/lttng-sessiond/trace-kernel.h index 9050c4d04..21ffd336d 100644 --- a/src/bin/lttng-sessiond/trace-kernel.h +++ b/src/bin/lttng-sessiond/trace-kernel.h @@ -79,8 +79,11 @@ struct ltt_kernel_metadata { struct ltt_kernel_stream { int fd; int state; + 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; }; @@ -91,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 */ @@ -109,6 +111,8 @@ struct ltt_kernel_session { unsigned int id; /* Session is started and active */ unsigned int started; + /* Tell or not if the session has to output the traces. */ + unsigned int output_traces; }; /* @@ -122,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);