summaryrefslogtreecommitdiffstats
path: root/common/mutex.h
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-19 22:58:36 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-05-02 11:24:44 +0200
commit60373e01fa9273751b037998329645072e21e837 (patch)
tree148aaaa1cc1ceed9f7a40098267564f7b633f882 /common/mutex.h
parent06c83ca99458f611d871936c9d1bf433703a8f05 (diff)
downloadspice-60373e01fa9273751b037998329645072e21e837.tar.gz
spice-60373e01fa9273751b037998329645072e21e837.tar.xz
spice-60373e01fa9273751b037998329645072e21e837.zip
common: add extern "C" guards to headers
Since some spice C++ code is using code from common/, the C functions need to be marked as such for the C++ compiler, otherwise we'll get linkage issues.
Diffstat (limited to 'common/mutex.h')
-rw-r--r--common/mutex.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/mutex.h b/common/mutex.h
index a2d35dec..6789b8f4 100644
--- a/common/mutex.h
+++ b/common/mutex.h
@@ -18,6 +18,11 @@
#ifndef _H_MUTEX
#define _H_MUTEX
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#ifdef _WIN32
#include <windows.h>
typedef CRITICAL_SECTION mutex_t;
@@ -32,4 +37,8 @@ typedef pthread_mutex_t mutex_t;
#define MUTEX_UNLOCK(mutex) pthread_mutex_unlock(&mutex)
#endif
+#ifdef __cplusplus
+}
+#endif
+
#endif // _H_MUTEX