summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ruby/thread.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/ruby/thread.h b/include/ruby/thread.h
index f3b1483a9c..fb9057c70f 100644
--- a/include/ruby/thread.h
+++ b/include/ruby/thread.h
@@ -26,12 +26,14 @@ extern "C" {
#endif
void *rb_thread_call_with_gvl(void *(*func)(void *), void *data1);
+
void *rb_thread_call_without_gvl(void *(*func)(void *), void *data1,
rb_unblock_function_t *ubf, void *data2);
-void *rb_thread_call_without_gvl2(void *(*func)(void *, VALUE *), void *data1,
- rb_unblock_function_t *ubf, void *data2);
+void *rb_thread_call_without_gvl2(void *(*func)(void *), void *data1,
+ rb_unblock_function_t *ubf, void *data2);
-#define RUBY_CALL_WO_GVL_FLAG_SKIP_CHECK_INTS 0x01
+#define RUBY_CALL_WO_GVL_FLAG_SKIP_CHECK_INTS_AFTER 0x01
+#define RUBY_CALL_WO_GVL_FLAG_SKIP_CHECK_INTS_
#if defined __GNUC__ && __GNUC__ >= 4
#pragma GCC visibility pop