Armadillo  0.1.1
TheexpandableOS
dispatcher.h
Go to the documentation of this file.
1 
6 #ifndef __DISPATCHER_H_
7 #define __DISPATCHER_H_
8 
9 #include <kernel/pcb.h>
10 #include <common/stdlib.h>
11 #include <common/stdio.h>
12 #include <common/memory.h>
13 #include <common/queue.h>
14 
15 //__attribute__((unused))static addr_t process_mem_space __attribute__((section(".bss")));
16 
20 void dispatcher_init();
25 void process_switch();
39 void spawn_process(void *process_function);
40 
41 #endif
Memory manager.
void spawn_process(void *process_function)
Queue data structure.
PCB.
void process_switch()
Definition: dispatcher.c:66
Definition: pcb.c:51
Input / output library.
void dispatcher_init()
Definition: dispatcher.c:61
Standard library.
pcb_t * get_current_pcb()
Definition: dispatcher.c:81