summaryrefslogtreecommitdiff
path: root/gtk2_ardour/gui_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/gui_thread.h')
-rw-r--r--gtk2_ardour/gui_thread.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk2_ardour/gui_thread.h b/gtk2_ardour/gui_thread.h
new file mode 100644
index 0000000000..7b09007d80
--- /dev/null
+++ b/gtk2_ardour/gui_thread.h
@@ -0,0 +1,10 @@
+#ifndef __ardour_gtk_gui_thread_h__
+#define __ardour_gtk_gui_thread_h__
+
+#define ENSURE_GUI_THREAD(slot) \
+ if (!Gtkmmext::UI::instance()->caller_is_gui_thread()) {\
+ Gtkmmext::UI::instance()->call_slot ((slot));\
+ return;\
+ }
+
+#endif /* __ardour_gtk_gui_thread_h__ */