Ruby
3.3.2p78 (2024-05-30 revision e5a195edf62fe1bf7146a191da13fa1c4fecbd71)
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.11.0