Ruby 3.5.0dev (2025-05-17 revision aa0f689bf45352c4a592e7f1a044912c40435266)
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}