Ruby 3.2.3p157 (2024-01-18 revision 52bb2ac0a6971d0391efa2275f7a66bff319087c)
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}