remove rt_context_start declaration

This commit is contained in:
Chris Copeland 2023-11-03 22:09:43 -07:00
parent 28eb29e099
commit 9824c9bc80
Signed by: chrisnc
GPG Key ID: 14550DA72485DF30
1 changed files with 0 additions and 5 deletions

View File

@ -14,11 +14,6 @@ void *rt_context_init(void (*fn)(void), void *stack, size_t stack_size);
void *rt_context_init_arg(void (*fn)(uintptr_t), uintptr_t arg, void *stack,
size_t stack_size);
/* Start execution from the given context. An implementation can assume that
* the context represents the beginning of a function call. This should only be
* called by rt_start. */
__attribute__((noreturn)) void rt_context_start(void *ctx);
/* Pointer to the previous task's context field, used to store the suspending
* context during a context switch. */
extern void **rt_context_prev;