PCB.
More...
Go to the source code of this file.
|
typedef int | reg_t |
|
typedef int | pid_t |
|
typedef void * | addr_t |
|
typedef enum State | state_t |
|
typedef struct Pcb | pcb_t |
|
typedef struct Context | context_t |
|
typedef struct Stack | stack_t |
|
|
enum | State { ready = 0,
running = 1,
terminated = 2
} |
|
◆ state_t
Enum representing the current state of a process
◆ State
Enum representing the current state of a process
◆ get_context()
Returns the CPU context of a process.
- Parameters
-
- Returns
- Pointer to a CPU context.
◆ get_pc()
addr_t get_pc |
( |
pcb_t * |
pcb | ) |
|
Returns the PC of a process.
- Parameters
-
- Returns
- The current PC of the process
◆ get_pid()
pid_t get_pid |
( |
pcb_t * |
pcb | ) |
|
Returns the PID of a process.
- Parameters
-
- Returns
- The PID of the process.
◆ init_context()
Allocates space for the CPU context of a PCB.
- Returns
- Pointer to a CPU context.
◆ init_pcb()
pcb_t* init_pcb |
( |
pid_t |
pid, |
|
|
addr_t |
start_function |
|
) |
| |
Allocates space for and initializes the starting state of a process.
- Parameters
-
pid | A process id |
start_function | A function pointer to the starting function of the process |
- Returns
- Pointer to the resulting PCB
◆ init_stack()
Allocates space for a process stack.
- Returns
- Pointer to a stack space.
◆ set_pcb_state()
Sets the state of a process.
- Parameters
-
pcb | Pointer to a PCB. |
state | New state of the process. |