Fix: Unexpected payload size in cmd_recv_stream_2_11
[lttng-tools.git] / src / lib / lttng-ctl / deprecated-symbols.c
index 90f639bee1307038ca413b7b4d53ca19b407ed79..15e74d77af141e96ef703e330687b3b0921d844c 100644 (file)
@@ -6,6 +6,7 @@
  */
 
 #include <stddef.h>
+#include <common/index-allocator.h>
 
 /*
  * These are symbols that were erroneously exposed and have since been removed.
@@ -16,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;
+}
This page took 0.024168 seconds and 4 git commands to generate.