Lines Matching refs:pcbls
160 static audit_pcb_t *pcbls = NULL; variable
174 extern audit_pcb_t *pcbls; /* ptr to start of list */
177 if (pcbls == NULL) {
178 pcbls = pcb; /* empty list */
181 pcbc = pcbls; /* current pcb */
182 pcbp = pcbls; /* previous pcb */
186 pcb->pcb_next = pcbls; /* new -> 1st in list */
187 pcbls = pcb;
212 extern audit_pcb_t *pcbls; /* ptr to start of list */ in aget()
214 if (pcbls == NULL) in aget()
215 return (pcbls); /* empty list */ in aget()
216 pcbret = pcbls; in aget()
217 pcbls = pcbls->pcb_next; /* 2nd becomes 1st */ in aget()