From 16f35901a971a06c37859ea0d9f1c4fb3ad463a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 22 Jan 2015 15:17:34 -0500 Subject: [PATCH] Fix: build failure using disable-lttng-ust configure option MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit A stub for ust_app_get_size_one_more_packet_per_stream() is missing which causes the build to fail when using the --disable-lttng-ust configuration option. Signed-off-by: Jérémie Galarneau --- src/bin/lttng-sessiond/ust-app.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/bin/lttng-sessiond/ust-app.h b/src/bin/lttng-sessiond/ust-app.h index 7a35ef2ee..9347cd709 100644 --- a/src/bin/lttng-sessiond/ust-app.h +++ b/src/bin/lttng-sessiond/ust-app.h @@ -328,8 +328,8 @@ void ust_app_destroy(struct ust_app *app); int ust_app_snapshot_record(struct ltt_ust_session *usess, struct snapshot_output *output, int wait, uint64_t nb_packets_per_stream); -uint64_t ust_app_get_size_one_more_packet_per_stream(struct ltt_ust_session *usess, - uint64_t cur_nr_packets); +uint64_t ust_app_get_size_one_more_packet_per_stream( + struct ltt_ust_session *usess, uint64_t cur_nr_packets); struct ust_app *ust_app_find_by_sock(int sock); static inline @@ -540,6 +540,11 @@ struct ust_app *ust_app_find_by_pid(pid_t pid) { return NULL; } +static inline +uint64_t ust_app_get_size_one_more_packet_per_stream( + struct ltt_ust_session *usess, uint64_t cur_nr_packets) { + return 0; +} #endif /* HAVE_LIBLTTNG_UST_CTL */ -- 2.34.1