mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 11:23:16 +01:00
Need to safely free boot memory and jump to first task's stack. Need to test scheduler and all syscall entries.
13 lines
259 B
C
13 lines
259 B
C
#ifndef __ARM_GLUE_INIT_H__
|
|
#define __ARM_GLUE_INIT_H__
|
|
|
|
#include <l4/generic/tcb.h>
|
|
#include <l4/generic/space.h>
|
|
|
|
void switch_to_user(struct ktcb *inittask);
|
|
void timer_start(void);
|
|
|
|
extern struct address_space init_space;
|
|
|
|
#endif /* __ARM_GLUE_INIT_H__ */
|