pproc_addr unused and removed
This commit is contained in:
parent
4fd433694f
commit
78793f4f38
2 changed files with 0 additions and 2 deletions
|
@ -51,7 +51,6 @@ PUBLIC void main()
|
|||
#endif
|
||||
rp->p_nr = i; /* proc number from ptr */
|
||||
rp->p_endpoint = _ENDPOINT(0, rp->p_nr); /* generation no. 0 */
|
||||
(pproc_addr + NR_TASKS)[i] = rp; /* proc ptr from number */
|
||||
}
|
||||
for (sp = BEG_PRIV_ADDR, i = 0; sp < END_PRIV_ADDR; ++sp, ++i) {
|
||||
sp->s_proc_nr = NONE; /* initialize as free */
|
||||
|
|
|
@ -215,7 +215,6 @@ struct proc {
|
|||
* with sizeof(struct proc) to determine the address.
|
||||
*/
|
||||
EXTERN struct proc proc[NR_TASKS + NR_PROCS]; /* process table */
|
||||
EXTERN struct proc *pproc_addr[NR_TASKS + NR_PROCS];
|
||||
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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue