summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorKJ Tsanaktsidis <[email protected]>2024-01-12 17:32:16 +1100
committerKJ Tsanaktsidis <[email protected]>2024-01-12 17:58:54 +1100
commit396e94666ba1646cb0fd1459eeae3f2e7ddd2658 (patch)
tree246d743ec71c97ed9fa98e82da12135b1da354a4 /thread.c
parent6af0f442c7d16ab526c0e6859aa97ff217b73f99 (diff)
Revert "Pass down "stack start" variables from closer to the top of the stack"
This reverts commit 4ba8f0dc993953d3ddda6328e3ef17a2fc2cbde5.
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index e7a9d7cd9b..070d1bbdfa 100644
--- a/thread.c
+++ b/thread.c
@@ -522,9 +522,9 @@ static VALUE rb_threadptr_raise(rb_thread_t *, int, VALUE *);
static VALUE rb_thread_to_s(VALUE thread);
void
-ruby_thread_init_stack(rb_thread_t *th, void *local_in_parent_frame)
+ruby_thread_init_stack(rb_thread_t *th)
{
- native_thread_init_stack(th, local_in_parent_frame);
+ native_thread_init_stack(th);
}
const VALUE *