Ruby
3.1.3p185 (2022-11-24 revision 1a6b16756e0ba6b95ab71a441357ed5484e33498)
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:23
Generated by
1.9.2