X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fhealth.h;h=9a7a7fc099f23b29a94ac32af356bc393eab6d7a;hp=477cb3d28dfe72e367da5f81f7fcaa0345872385;hb=b878f05a6e62779ddf2364d5bb51821cb6d6d572;hpb=d74df4226a1b4461c896d51a221afe38e07809a7 diff --git a/include/lttng/health.h b/include/lttng/health.h index 477cb3d28..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; @@ -26,6 +30,8 @@ enum lttng_health_consumerd { LTTNG_HEALTH_CONSUMERD_UST_32, LTTNG_HEALTH_CONSUMERD_UST_64, LTTNG_HEALTH_CONSUMERD_KERNEL, + + NR_LTTNG_HEALTH_CONSUMERD, }; /** @@ -104,7 +110,7 @@ int lttng_health_get_nr_threads(const struct lttng_health *health); */ const struct lttng_health_thread * lttng_health_get_thread(const struct lttng_health *health, - int nth_thread); + unsigned int nth_thread); /** * lttng_health_thread_state - Get thread health state @@ -122,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 */