X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-kernel.h;h=b290ce492a6dac7e35ca8c8eac9a3000e0b90f7c;hp=64316d8b7b4ae9c26ddb9de388880565f686c9ff;hb=ab5be9fa2eb5ba9600a82cd18fd3cfcbac69169a;hpb=71a3bb01e288ad6e611be0501a4444375c4124a7 diff --git a/src/bin/lttng-sessiond/trace-kernel.h b/src/bin/lttng-sessiond/trace-kernel.h index 64316d8b7..b290ce492 100644 --- a/src/bin/lttng-sessiond/trace-kernel.h +++ b/src/bin/lttng-sessiond/trace-kernel.h @@ -1,18 +1,8 @@ /* - * Copyright (C) 2011 - David Goulet + * Copyright (C) 2011 David Goulet * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License, version 2 only, - * as published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _LTT_TRACE_KERNEL_H @@ -26,6 +16,7 @@ #include #include "consumer.h" +#include "tracker.h" /* Kernel event list */ struct ltt_kernel_event_list { @@ -58,6 +49,7 @@ struct ltt_kernel_event { struct cds_list_head list; char *filter_expression; struct lttng_filter_bytecode *filter; + struct lttng_userspace_probe_location *userspace_probe_location; }; /* Kernel channel */ @@ -119,6 +111,15 @@ struct ltt_kernel_session { unsigned int output_traces; unsigned int snapshot_mode; unsigned int has_non_default_channel; + /* Current trace chunk of the ltt_session. */ + struct lttng_trace_chunk *current_trace_chunk; + /* Tracker lists */ + struct lttng_tracker_list *tracker_list_pid; + struct lttng_tracker_list *tracker_list_vpid; + struct lttng_tracker_list *tracker_list_uid; + struct lttng_tracker_list *tracker_list_vuid; + struct lttng_tracker_list *tracker_list_gid; + struct lttng_tracker_list *tracker_list_vgid; }; /* @@ -132,7 +133,7 @@ struct ltt_kernel_event *trace_kernel_find_event( enum lttng_event_type type, struct lttng_filter_bytecode *filter); struct ltt_kernel_channel *trace_kernel_get_channel_by_name( - char *name, struct ltt_kernel_session *session); + const char *name, struct ltt_kernel_session *session); /* * Create functions malloc() the data structure. @@ -161,5 +162,6 @@ void trace_kernel_destroy_channel(struct ltt_kernel_channel *channel); void trace_kernel_destroy_event(struct ltt_kernel_event *event); void trace_kernel_destroy_stream(struct ltt_kernel_stream *stream); void trace_kernel_destroy_context(struct ltt_kernel_context *ctx); +void trace_kernel_free_session(struct ltt_kernel_session *session); #endif /* _LTT_TRACE_KERNEL_H */