kern
annotate src/proc.h @ 30:a2c6110bd24b
refactored the code a bit, and merged with the malloc implementation branch
author | John Tsiombikas <nuclear@siggraph.org> |
---|---|
date | Fri, 27 May 2011 22:09:10 +0300 |
parents | |
children | e6de3c6015cb |
rev | line source |
---|---|
nuclear@29 | 1 #ifndef PROC_H_ |
nuclear@29 | 2 #define PROC_H_ |
nuclear@29 | 3 |
nuclear@29 | 4 #include "tss.h" |
nuclear@29 | 5 |
nuclear@29 | 6 struct process { |
nuclear@29 | 7 int id; |
nuclear@29 | 8 |
nuclear@29 | 9 struct task_state tss; |
nuclear@29 | 10 |
nuclear@29 | 11 struct process *next; |
nuclear@29 | 12 }; |
nuclear@29 | 13 |
nuclear@29 | 14 #endif /* PROC_H_ */ |