Lines Matching defs:plp
3620 struct pidlist *plp;
3646 plp = (struct pidlist *)calloc(DELTA,
3648 if (plp == NULL) {
3653 * Point at 2nd record allocated, we'll use plp.
3655 tp = plp + 1;
3665 plp = Plfree;
3666 Plfree = plp->pl_next;
3668 plp->pl_pid = p->pd_pid;
3669 plp->pl_dflag = 0;
3670 plp->pl_next = NULL;
3675 Plhead = plp;
3681 if (plp->pl_pid > tp->pl_pid) {
3685 } else if (plp->pl_pid < tp->pl_pid) {
3687 plp->pl_next = Plhead;
3688 Plhead = plp;
3690 plp->pl_next =
3692 savetp->pl_next = plp;
3697 plp->pl_next = Plfree;
3698 Plfree = plp;
3704 savetp->pl_next = plp;