summaryrefslogtreecommitdiff
path: root/coroutine/ucontext/Context.c
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine/ucontext/Context.c')
-rw-r--r--coroutine/ucontext/Context.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/coroutine/ucontext/Context.c b/coroutine/ucontext/Context.c
new file mode 100644
index 0000000000..ab8fda923e
--- /dev/null
+++ b/coroutine/ucontext/Context.c
@@ -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);
+}