From 2c1142ac6794479345e8f1c5d50ba1f306bb40cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 6 Feb 2014 14:13:56 -0500 Subject: [PATCH] Add extern C to the health-check header MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This makes it possible to include health.h in a C++ program. Acked-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau Signed-off-by: David Goulet --- include/lttng/health.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/lttng/health.h b/include/lttng/health.h index 996092869..9a7a7fc09 100644 --- a/include/lttng/health.h +++ b/include/lttng/health.h @@ -19,6 +19,10 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifdef __cplusplus +extern "C" { +#endif + struct lttng_health; struct lttng_health_thread; @@ -124,4 +128,8 @@ int lttng_health_thread_state(const struct lttng_health_thread *thread); */ const char *lttng_health_thread_name(const struct lttng_health_thread *thread); +#ifdef __cplusplus +} +#endif + #endif /* LTTNG_HEALTH_H */ -- 2.34.1