Ruby 3.5.0dev (2025-09-08 revision 1e7ee6a4ba3ee626d9fb99be4a35365bce74b0f9)
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}