Ruby
4.0.6p0 (2026-07-14 revision 03b6d3f8898a28604fe6cb00eae3226b821168f4)
coroutine
asyncify
Context.c
1
#include "Context.h"
2
3
void
coroutine_trampoline(
void
* _start,
void
* _context)
4
{
5
coroutine_start start = (coroutine_start)_start;
6
struct
coroutine_context
* context = _context;
7
rb_wasm_set_stack_pointer(context->current_sp);
8
9
start(context->from, context);
10
}
coroutine_context
Definition
Context.h:36
Generated by
1.17.0