summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2022-06-14 23:52:20 -0700
committerJohn Hawthorn <john@hawthorn.email>2022-06-15 16:07:29 -0700
commit17d260a87fd0cb4433d29c21f3a69ea963c64056 (patch)
tree1daf9866025a2ebad7ec9c2d05c1ff0ff8264e11 /internal
parent5310147bb826424059f258b76b37bebdc0abbc63 (diff)
Restore rb_exec_recursive_outer
This was a public method, so we should probably keep it.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/6027
Diffstat (limited to 'internal')
-rw-r--r--internal/thread.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/thread.h b/internal/thread.h
index 919ad96580..63f03bb94a 100644
--- a/internal/thread.h
+++ b/internal/thread.h
@@ -35,6 +35,7 @@ int rb_thread_to_be_killed(VALUE thread);
void rb_mutex_allow_trap(VALUE self, int val);
VALUE rb_uninterruptible(VALUE (*b_proc)(VALUE), VALUE data);
VALUE rb_mutex_owned_p(VALUE self);
+VALUE rb_exec_recursive_outer_mid(VALUE (*f)(VALUE g, VALUE h, int r), VALUE g, VALUE h, ID mid);
int rb_thread_wait_for_single_fd(int fd, int events, struct timeval * timeout);