summaryrefslogtreecommitdiffstats
path: root/src/compat.h
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2014-02-18 14:47:04 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2014-02-18 14:47:47 +0100
commit501a9e0270afefea7b4f790e4efc291b2d2bcedd (patch)
treed642cf33de8d9bfb85dc9f43c8696a181caeb2dc /src/compat.h
parent46ad1c43859fadbb88173f18c38bdad59c1812af (diff)
downloaduca-501a9e0270afefea7b4f790e4efc291b2d2bcedd.tar.gz
uca-501a9e0270afefea7b4f790e4efc291b2d2bcedd.tar.bz2
uca-501a9e0270afefea7b4f790e4efc291b2d2bcedd.tar.xz
uca-501a9e0270afefea7b4f790e4efc291b2d2bcedd.zip
Add compatibility layer for new thread API
Diffstat (limited to 'src/compat.h')
-rw-r--r--src/compat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/compat.h b/src/compat.h
new file mode 100644
index 0000000..d2096f8
--- /dev/null
+++ b/src/compat.h
@@ -0,0 +1,8 @@
+#ifndef COMPAT_H
+#define COMPAT_H
+
+#if !GLIB_CHECK_VERSION(2, 32, 0)
+#define g_thread_new(name, func, data) g_thread_create(func, data, TRUE, NULL)
+#endif
+
+#endif