bin: compile lttng-sessiond as C++
[lttng-tools.git] / src / common / testpoint / testpoint.h
index dc5be832b04b7dfb8696802e7179860345e16274..b613b1749dab4d4258bffc0857ad745d4883fe74 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (C) 2012 Christian Babeux <christian.babeux@efficios.com>
+ * Copyright (C) 2012 Christian Babeux <christian.babeux@efficios.com>
  *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License, version 2 only, as
- * published by the Free Software Foundation.
+ * SPDX-License-Identifier: GPL-2.0-only
  *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifdef NTESTPOINT
 
 #include <urcu.h> /* for caa_likely/unlikely */
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 extern int lttng_testpoint_activated;
 
 void *lttng_testpoint_lookup(const char *name);
@@ -53,7 +47,7 @@ void *lttng_testpoint_lookup(const char *name);
                        ret = tp();                                     \
                } else {                                                \
                        if (!found) {                                   \
-                               tp = lttng_testpoint_lookup(tp_name);   \
+                               tp = (int (*)(void)) lttng_testpoint_lookup(tp_name);   \
                                if (tp) {                               \
                                        found = 1;                      \
                                        ret = tp();                     \
@@ -69,4 +63,8 @@ void *lttng_testpoint_lookup(const char *name);
 #define TESTPOINT_DECL(name)   \
        _TESTPOINT_DECL(name)
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* NTESTPOINT */
This page took 0.027849 seconds and 4 git commands to generate.