diff options
author | KJ Tsanaktsidis <[email protected]> | 2024-01-12 17:32:16 +1100 |
---|---|---|
committer | KJ Tsanaktsidis <[email protected]> | 2024-01-12 17:58:54 +1100 |
commit | 396e94666ba1646cb0fd1459eeae3f2e7ddd2658 (patch) | |
tree | 246d743ec71c97ed9fa98e82da12135b1da354a4 /thread.c | |
parent | 6af0f442c7d16ab526c0e6859aa97ff217b73f99 (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 * |