Recently, commits to fix SDT issues with extern C
(https://bugs.lttng.org/issues/597) brougt in compile errors when the
tracepoint is defined in the same file where the tracepoint provider is
created.
This was due to the presence of extern C guards in tracepoint-event.h, a
header dedicated to tracepoint probe provider compilation. After commits
"Tracepoint probes don't need extern C", it should have gone away. This
is the main fix done by this patch.
This patch also adds missing extern C guards in ust-error.h and
ust-events.h.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
#ifdef TRACEPOINT_CREATE_PROBES
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#define __tp_stringify1(x) #x
#define __tp_stringify(x) __tp_stringify1(x)
#undef TRACEPOINT_INCLUDE_FILE
#undef TRACEPOINT_INCLUDE
-#ifdef __cplusplus
-}
-#endif
-
#define TRACEPOINT_CREATE_PROBES
#endif /* TRACEPOINT_CREATE_PROBES */
#include <unistd.h>
#include <lttng/ust-abi.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*
* ustcomm error code.
*/
*/
extern const char *lttng_ust_strerror(int code);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _LTTNG_UST_ERROR_H */
#include <lttng/ust-endian.h>
#include <float.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#define LTTNG_UST_UUID_LEN 16
/*
void lttng_handle_pending_statedump(void *owner);
struct cds_list_head *_lttng_get_sessions(void);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _LTTNG_UST_EVENTS_H */