mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Add ucontext
coroutine implementation for generic fallback.
This commit is contained in:
parent
a84a99ffab
commit
6c6bf9ffcb
13 changed files with 211 additions and 174 deletions
16
coroutine/ucontext/Context.c
Normal file
16
coroutine/ucontext/Context.c
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* This file is part of the "Coroutine" project and released under the MIT License.
|
||||
*
|
||||
* Created by Samuel Williams on 24/6/2019.
|
||||
* Copyright, 2019, by Samuel Williams. All rights reserved.
|
||||
*/
|
||||
|
||||
#include "Context.h"
|
||||
|
||||
void coroutine_trampoline(void * _start, void * _context)
|
||||
{
|
||||
coroutine_start start = _start;
|
||||
struct coroutine_context * context = _context;
|
||||
|
||||
start(context->from, context);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue