previous | start | next

Kernel's Process Table

The process table in Minix is just a fixed size array.

The entries are of type struct proc.

 EXTERN struct proc proc[NR_TASKS + NR_PROCS];/* process table */
     


previous | start | next