Ruby 3.4.4p34 (2025-05-14 revision a38531fd3f617bf734ef7d6c595325f69985ea1d)
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}