Armadillo
0.1.1
TheexpandableOS
src
include
kernel
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
();
31
pcb_t
*
get_current_pcb
();
39
void
spawn_process
(
void
*process_function);
40
41
#endif
memory.h
Memory manager.
spawn_process
void spawn_process(void *process_function)
queue.h
Queue data structure.
pcb.h
PCB.
process_switch
void process_switch()
Definition:
dispatcher.c:66
Pcb
Definition:
pcb.c:51
stdio.h
Input / output library.
dispatcher_init
void dispatcher_init()
Definition:
dispatcher.c:61
stdlib.h
Standard library.
get_current_pcb
pcb_t * get_current_pcb()
Definition:
dispatcher.c:81
Generated by
1.8.14