Armadillo  0.1.1
TheexpandableOS
pcb.h
Go to the documentation of this file.
1 
6 #ifndef __PCB_H_
7 #define __PCB_H_
8 
9 #include <common/memory.h>
10 
11 typedef int reg_t;
12 typedef int pid_t;
13 typedef void *addr_t;
14 
18 typedef enum State{
19  ready = 0,
20  running = 1,
21  terminated = 2,
22 } state_t;
23 
24 typedef struct Pcb pcb_t;
25 typedef struct Context context_t;
26 typedef struct Stack stack_t;
27 
36 pcb_t *init_pcb(pid_t pid, addr_t start_function);
55 void set_pcb_state(pcb_t *pcb, state_t state);
56 /*
57 * @brief Gets the state of a process
58 *
59 * @param [in] pcb Pointer to a PCB
60 */
61 state_t get_pcb_state(pcb_t *pcb);
68 pid_t get_pid(pcb_t *pcb);
80 addr_t get_pc(pcb_t *pcb);
81 
82 #endif
Memory manager.
pid_t get_pid(pcb_t *pcb)
Definition: pcb.c:92
pcb_t * init_pcb(pid_t pid, addr_t start_function)
Definition: pcb.c:63
enum State state_t
void set_pcb_state(pcb_t *pcb, state_t state)
Definition: pcb.c:84
addr_t get_pc(pcb_t *pcb)
Definition: pcb.c:100
context_t * init_context()
Definition: pcb.c:74
context_t * get_context(pcb_t *pcb)
Definition: pcb.c:96
Definition: pcb.c:51
State
Definition: pcb.h:18
Definition: stack.c:10
Definition: pcb.c:16
stack_t * init_stack()
Definition: pcb.c:79