Ruby 3.5.0dev (2025-05-17 revision aa0f689bf45352c4a592e7f1a044912c40435266)
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}