Home | History | Annotate | Download | only in kern

Lines Matching defs:pl

703 	struct ptrace_lwpinfo pl;
705 if (data != sizeof(pl)) {
706 DPRINTF(("%s: %zu != %zu\n", __func__, data, sizeof(pl)));
709 int error = copyin(addr, &pl, sizeof(pl));
713 lwpid_t tmp = pl.pl_lwpid;
731 pl.pl_lwpid = 0;
732 pl.pl_event = 0;
735 pl.pl_lwpid = (*lt)->l_lid;
738 pl.pl_event = PL_EVENT_SUSPENDED;
749 pl.pl_lwpid, t->p_sigctx.ps_lwp,
751 pl.pl_event = PL_EVENT_SIGNAL;
756 pl.pl_lwpid, pl.pl_event));
758 return copyout(&pl, addr, sizeof(pl));