Ruby 3.4.4p34 (2025-05-14 revision a38531fd3f617bf734ef7d6c595325f69985ea1d)
Context.c
1#include "Context.h"
2
3void coroutine_trampoline(void * _start, void * _context)
4{
5 coroutine_start start = (coroutine_start)_start;
6 struct coroutine_context * context = _context;
7 rb_wasm_set_stack_pointer(context->current_sp);
8
9 start(context->from, context);
10}