Ruby 3.3.5p100 (2024-09-03 revision ef084cc8f4958c1b6e4ead99136631bef6d8ddba)
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}