summaryrefslogtreecommitdiff
path: root/sys/inc/os/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/inc/os/process.h')
-rw-r--r--sys/inc/os/process.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/inc/os/process.h b/sys/inc/os/process.h
index a2e3fdd..24db3e1 100644
--- a/sys/inc/os/process.h
+++ b/sys/inc/os/process.h
@@ -43,11 +43,13 @@
* system
*
* @pid: Process ID
+ * @affinity: Processor affinity
* @pcb: Process control block
* @link: Queue link
*/
struct process {
pid_t pid;
+ id_t affinity;
struct pcb pcb;
TAILQ_ENTRY(process) link;
};