mirror of
https://github.com/drasko/codezero.git
synced 2026-02-27 17:23:13 +01:00
Container/Pager/Capability initialization that works.
Need to safely free boot memory and jump to first task's stack. Need to test scheduler and all syscall entries.
This commit is contained in:
@@ -35,6 +35,13 @@ struct container_head {
|
||||
struct link list;
|
||||
};
|
||||
|
||||
static inline void
|
||||
container_head_init(struct container_head *chead)
|
||||
{
|
||||
chead->ncont = 0;
|
||||
link_init(&chead->list);
|
||||
}
|
||||
|
||||
/*
|
||||
* Everything on the platform is described and stored
|
||||
* in the structure below.
|
||||
|
||||
Reference in New Issue
Block a user