Ruby
3.3.6p108 (2024-11-05 revision 75015d4c1f6965b5e85e96fb309f1f2129f933c0)
coroutine
emscripten
Context.c
1
#include "Context.h"
2
3
void
coroutine_trampoline(
void
* _context)
4
{
5
struct
coroutine_context
* context = _context;
6
7
context->entry_func(context->from, context);
8
}
coroutine_context
Definition
Context.h:36
Generated by
1.12.0