From 6f698634fc3357dac77ea7e7ab9d07b7b8bf9270 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 6 Jul 2016 15:30:45 -0400 Subject: [PATCH] Add missing ust_app_regenerate_statedump_all stub MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This allows the build to succeed in --without-lttng-ust mode. Signed-off-by: Jérémie Galarneau --- src/bin/lttng-sessiond/ust-app.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bin/lttng-sessiond/ust-app.h b/src/bin/lttng-sessiond/ust-app.h index a55471ec7..3b5d6ae9a 100644 --- a/src/bin/lttng-sessiond/ust-app.h +++ b/src/bin/lttng-sessiond/ust-app.h @@ -585,6 +585,12 @@ int ust_app_pid_get_channel_runtime_stats(struct ltt_ust_session *usess, return 0; } +static inline +int ust_app_regenerate_statedump_all(struct ltt_ust_session *usess) +{ + return 0; +} + #endif /* HAVE_LIBLTTNG_UST_CTL */ #endif /* _LTT_UST_APP_H */ -- 2.34.1