aboutsummaryrefslogtreecommitdiffstats
path: root/coroutine/ucontext/Context.c
blob: 9ce768561b9b781a133e9e10600315c3f63813b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *  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 "ruby/config.h"
#include "Context.h"

void coroutine_trampoline(void * _start, void * _context)
{
    coroutine_start start = _start;
    struct coroutine_context * context = _context;

    start(context->from, context);
}