X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fbin%2Flttng-sessiond%2Futils.h;h=2492bb0f6f646a149490282f34a442e49116cac5;hb=44760c20f4fc255b63894ca758cf2ee5f253220b;hp=a63d0a3dc5458f538cdb75a18987760bc578400c;hpb=ef599319218f03ff160778e577cd8389a165f47c;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/utils.h b/src/bin/lttng-sessiond/utils.h index a63d0a3dc..2492bb0f6 100644 --- a/src/bin/lttng-sessiond/utils.h +++ b/src/bin/lttng-sessiond/utils.h @@ -1,27 +1,25 @@ /* - * 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_UTILS_H #define _LTT_UTILS_H +struct lttng_ht; +struct ltt_session; +struct consumer_output; + const char *get_home_dir(void); int notify_thread_pipe(int wpipe); -int utils_create_pipe_cloexec(int *dst); -int utils_create_pipe(int *dst); -void utils_close_pipe(int *src); +void ht_cleanup_push(struct lttng_ht *ht); +int loglevels_match(int a_loglevel_type, int a_loglevel_value, + int b_loglevel_type, int b_loglevel_value, int loglevel_all_type); +const char *session_get_base_path(const struct ltt_session *session); +const char *consumer_output_get_base_path(const struct consumer_output *output); +struct lttng_filter_bytecode *lttng_filter_bytecode_copy( + const struct lttng_filter_bytecode *orig_f); #endif /* _LTT_UTILS_H */