Ruby 2.7.7p221 (2022-11-24 revision 168ec2b1e5ad0e4688e963d9de019557c78feed9)
Context.c
Go to the documentation of this file.
1/*
2 * This file is part of the "Coroutine" project and released under the MIT License.
3 *
4 * Created by Samuel Williams on 24/6/2019.
5 * Copyright, 2019, by Samuel Williams.
6*/
7
8/* According to Solaris' ucontext.h, makecontext, etc. are removed in SUSv4.
9 * To enable the prototype declarations, we need to define __EXTENSIONS__.
10 */
11#if defined(__sun) && !defined(__EXTENSIONS__)
12#define __EXTENSIONS__
13#endif
14#include "Context.h"
15
16void coroutine_trampoline(void * _start, void * _context)
17{
18 coroutine_start start = _start;
19 struct coroutine_context * context = _context;
20
21 start(context->from, context);
22}
COROUTINE(* coroutine_start)(struct coroutine_context *from, struct coroutine_context *self)
Definition: Context.h:22
struct coroutine_context * from
Definition: Context.h:37
void coroutine_trampoline(void *_start, void *_context)
Definition: Context.c:16