diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-02-28 20:20:12 +0100 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-02-28 20:20:12 +0100 |
commit | 6e182c588ec06f0db626a5ee7247b9b1688b10b6 (patch) | |
tree | 2c2d5e7dd92abe4ff1722996f3da561ba3ef3447 /lib/arch/api.h | |
parent | 9ba2177d93e3aab498598cb7058bdb64798a2f29 (diff) | |
download | matcha-threads-6e182c588ec06f0db626a5ee7247b9b1688b10b6.tar.gz matcha-threads-6e182c588ec06f0db626a5ee7247b9b1688b10b6.zip |
pull out api.h into arch and add documentation
Diffstat (limited to 'lib/arch/api.h')
-rw-r--r-- | lib/arch/api.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/arch/api.h b/lib/arch/api.h new file mode 100644 index 0000000..adf773e --- /dev/null +++ b/lib/arch/api.h @@ -0,0 +1,31 @@ +/* Copyright (c) 2021 Johannes Stoelp */ + +#pragma once + +// Platform specific API. +// When integrating a new platform the following functions must be implemented. + +// Called once for every `Thread` object to setup the initial state of the +// threads stack. +// +// Arguments: +// stack_ptr Pointer to the bottom of the stack. +// entry Function pointer to the entry-point called on first `yield`. +// ctx Context passed to `entry`. +// +// Return: +// Return pointer to the top of the stack after initialization. +// +// Requirements: +// - Stack must be descending. +// - Returned stack pointer must be aligned according to the platform specification. +// - Stack must be setup in a way that a consequent call to `yield` will call +// `entry` with `ctx` supplied as argument. +void* init_stack(void* stack_ptr, void (*entry)(void*), const void* ctx); + +// Switch execution context from current stack to `new_stack`. +// +// Arguments: +// new_stack Stack pointer of new context to switch to. +// old_stack Pointer to location to store the current stack pointer. +extern "C" void yield(const void* new_stack, void** old_stack); |