From: Jérémie Galarneau Date: Thu, 22 Jan 2015 20:17:34 +0000 (-0500) Subject: Fix: build failure using disable-lttng-ust configure option X-Git-Tag: v2.5.4~7 X-Git-Url: http://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=7b6d3962aecfc8d8c4eef823b74dccd8ac557078 Fix: build failure using disable-lttng-ust configure option 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 --- diff --git a/src/bin/lttng-sessiond/ust-app.h b/src/bin/lttng-sessiond/ust-app.h index 3e3eb3197..999df4778 100644 --- a/src/bin/lttng-sessiond/ust-app.h +++ b/src/bin/lttng-sessiond/ust-app.h @@ -327,8 +327,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 @@ -537,6 +537,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 */