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