kern

annotate src/proc.h @ 41:928b0ebfff4d

merged the timer/rtc/etc from the misc branch
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 14 Jun 2011 01:19:07 +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_ */