mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
276 B
C
11 lines
276 B
C
|
#include "Context.h"
|
||
|
|
||
|
void coroutine_trampoline(void * _start, void * _context)
|
||
|
{
|
||
|
coroutine_start start = (coroutine_start)_start;
|
||
|
struct coroutine_context * context = _context;
|
||
|
rb_wasm_set_stack_pointer(context->current_sp);
|
||
|
|
||
|
start(context->from, context);
|
||
|
}
|