Ruby 3.4.6p54 (2025-09-16 revision dbd83256b1cec76c69756ecb8758b9e1079833de)
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}