From: Tomas Hruby Date: Fri, 26 Mar 2010 13:19:04 +0000 (+0000) Subject: Comment in proc.h X-Git-Tag: v3.1.7~202 X-Git-Url: http://zhaoyanbai.com/repos/man.named-checkconf.html?a=commitdiff_plain;h=8e5a82fd4949dc8edf273574cfecfff3274d9257;p=minix.git Comment in proc.h - This comment is not correct as the pproc_addr array does not exist. --- diff --git a/kernel/proc.h b/kernel/proc.h index 319dadd5e..0d8d7271d 100644 --- a/kernel/proc.h +++ b/kernel/proc.h @@ -257,11 +257,6 @@ struct proc { #ifndef __ASSEMBLY__ -/* The process table and pointers to process table slots. The pointers allow - * faster access because now a process entry can be found by indexing the - * pproc_addr array, while accessing an element i requires a multiplication - * with sizeof(struct proc) to determine the address. - */ EXTERN struct proc proc[NR_TASKS + NR_PROCS]; /* process table */ EXTERN struct proc *rdy_head[NR_SCHED_QUEUES]; /* ptrs to ready list headers */ EXTERN struct proc *rdy_tail[NR_SCHED_QUEUES]; /* ptrs to ready list tails */