rt/include/rt/start.h

11 lines
282 B
C

#ifndef RT_START_H
#define RT_START_H
/* 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);
#endif /* RT_START_H */