]> wirehaze git hosting - ppos.git/blob - ppos/kernel/tcb.h

wirehaze git hosting

add ppos/
[ppos.git] / ppos / kernel / tcb.h
1 // PingPongOS - PingPong Operating System
2 // Prof. Carlos A. Maziero, DINF UFPR
3 // Versão 2.0 -- Junho de 2025
4
5 // TCB - Task Control Block do sistema operacional
6
7 #ifndef __PPOS_TCB__
8 #define __PPOS_TCB__
9
10 #include "ctx.h"
11
12 // Task Control Block (TCB), infos sobre uma tarefa
13 struct task_t
14 {
15 int id; // identificador da tarefa
16 char *name; // nome da tarefa
17 struct ctx_t context; // contexto armazenado da tarefa
18 // ...
19 };
20
21 #endif