Ruby 4.0.5p0 (2026-05-20 revision 64336ffd0ee9e1f4c05891695a3d7b49cb709721)
Context.c
1#include "Context.h"
2
3void coroutine_trampoline(void * _context)
4{
5 struct coroutine_context * context = _context;
6
7 context->entry_func(context->from, context);
8}