X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Flib%2Flttng-ctl%2Fdeprecated-symbols.c;h=15e74d77af141e96ef703e330687b3b0921d844c;hb=fe7bf56464d7747362e1bde77c2769a62c81ac4c;hp=507042516e77ac12507170c261ce6031684dbe43;hpb=5bb69c35f42085f6684d985d6b872742f241e866;p=lttng-tools.git diff --git a/src/lib/lttng-ctl/deprecated-symbols.c b/src/lib/lttng-ctl/deprecated-symbols.c index 507042516..15e74d77a 100644 --- a/src/lib/lttng-ctl/deprecated-symbols.c +++ b/src/lib/lttng-ctl/deprecated-symbols.c @@ -1,21 +1,12 @@ /* - * Copyright (C) 2016 - Jérémie Galarneau + * Copyright (C) 2016 Jérémie Galarneau * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License, version 2.1 only, - * as published by the Free Software Foundation. + * SPDX-License-Identifier: LGPL-2.1-only * - * This library 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 Lesser General Public License - * for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include +#include /* * These are symbols that were erroneously exposed and have since been removed. @@ -26,3 +17,35 @@ size_t default_kernel_channel_subbuf_size; size_t default_metadata_subbuf_size; size_t default_ust_pid_channel_subbuf_size; size_t default_ust_uid_channel_subbuf_size; + +const char * const config_element_pid_tracker; +const char * const config_element_target_pid; +const char * const config_element_targets; +const char * const config_element_trackers; + +enum lttng_index_allocator_status lttng_index_allocator_alloc( + struct lttng_index_allocator *a, uint64_t *b) +{ + return LTTNG_INDEX_ALLOCATOR_STATUS_ERROR; +} + +struct lttng_index_allocator* lttng_index_allocator_create(uint64_t a) +{ + return NULL; +} + +void lttng_index_allocator_destroy(struct lttng_index_allocator *a) +{ +} + +uint64_t lttng_index_allocator_get_index_count( + struct lttng_index_allocator *a) +{ + return -1ULL; +} + +enum lttng_index_allocator_status lttng_index_allocator_release( + struct lttng_index_allocator *a, uint64_t b) +{ + return LTTNG_INDEX_ALLOCATOR_STATUS_ERROR; +}