rt/include/rt/start.h

8 lines
226 B
C

#pragma once
// Start rt. Generally should be called from assembly after initialization.
__attribute__((noreturn)) void rt_start(void);
// Get the first task context to run. Called by rt_start.
void *rt_start_context(void);