Home
last modified time | relevance | path

Searched refs:psp (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dprocset.h137 #define setprocset(psp, op, ltype, lid, rtype, rid) \ argument
138 (psp)->p_op = (op); \
139 (psp)->p_lidtype = (ltype); \
140 (psp)->p_lid = (lid); \
141 (psp)->p_ridtype = (rtype); \
142 (psp)->p_rid = (rid);
/freebsd/lib/libproc/
H A Dproc_util.c210 lwpstatus_t *psp = &phdl->lwps; in proc_getlwpstatus() local
224 psp->pr_why = PR_FAULTED; in proc_getlwpstatus()
225 psp->pr_what = FLTBPT; in proc_getlwpstatus()
227 psp->pr_why = PR_SIGNALLED; in proc_getlwpstatus()
228 psp->pr_what = siginfo->si_signo; in proc_getlwpstatus()
231 psp->pr_why = PR_SYSENTRY; in proc_getlwpstatus()
233 psp->pr_why = PR_SYSEXIT; in proc_getlwpstatus()
236 return (psp); in proc_getlwpstatus()
/freebsd/sys/amd64/ia32/
H A Dia32_signal.c342 struct sigacts *psp; in ia32_osendsig() local
351 psp = p->p_sigacts; in ia32_osendsig()
352 mtx_assert(&psp->ps_mtx, MA_OWNED); in ia32_osendsig()
358 SIGISMEMBER(psp->ps_sigonstack, sig)) { in ia32_osendsig()
369 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in ia32_osendsig()
382 mtx_unlock(&psp->ps_mtx); in ia32_osendsig()
433 mtx_lock(&psp->ps_mtx); in ia32_osendsig()
445 struct sigacts *psp; in freebsd4_ia32_sendsig() local
456 psp = p->p_sigacts; in freebsd4_ia32_sendsig()
457 mtx_assert(&psp->ps_mtx, MA_OWNED); in freebsd4_ia32_sendsig()
[all …]
/freebsd/contrib/nvi/cl/
H A Dcl_funcs.c523 SCR *psp, *tsp; in cl_refresh() local
548 for (psp = sp; psp != NULL; psp = TAILQ_NEXT(psp, q)) in cl_refresh()
549 for (tsp = TAILQ_NEXT(psp, q); tsp != NULL; in cl_refresh()
551 if (psp->roff == tsp->roff) { in cl_refresh()
552 if (psp->coff + psp->cols + 1 == tsp->coff) in cl_refresh()
553 cl_rdiv(psp); in cl_refresh()
555 if (tsp->coff + tsp->cols + 1 == psp->coff) in cl_refresh()
/freebsd/sys/i386/i386/
H A Dexec_machdep.c133 struct sigacts *psp; in osendsig() local
142 psp = p->p_sigacts; in osendsig()
143 mtx_assert(&psp->ps_mtx, MA_OWNED); in osendsig()
149 SIGISMEMBER(psp->ps_sigonstack, sig)) { in osendsig()
162 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in osendsig()
175 mtx_unlock(&psp->ps_mtx); in osendsig()
251 mtx_lock(&psp->ps_mtx); in osendsig()
262 struct sigacts *psp; in freebsd4_sendsig() local
271 psp = p->p_sigacts; in freebsd4_sendsig()
272 mtx_assert(&psp->ps_mtx, MA_OWNED); in freebsd4_sendsig()
[all …]
/freebsd/sys/i386/linux/
H A Dlinux_sysvec.c157 struct sigacts *psp; in linux_rt_sendsig() local
166 psp = p->p_sigacts; in linux_rt_sendsig()
167 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_rt_sendsig()
173 SIGISMEMBER(psp->ps_sigonstack, sig)) { in linux_rt_sendsig()
178 mtx_unlock(&psp->ps_mtx); in linux_rt_sendsig()
243 mtx_lock(&psp->ps_mtx); in linux_rt_sendsig()
261 struct sigacts *psp; in linux_sendsig() local
269 psp = p->p_sigacts; in linux_sendsig()
271 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_sendsig()
272 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in linux_sendsig()
[all …]
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_proc.c441 const lwpstatus_t *psp; in dt_proc_control() local
452 psp = proc_getlwpstatus(P); in dt_proc_control()
455 pid, psp->pr_why, psp->pr_what); in dt_proc_control()
466 if (psp->pr_why == PR_FAULTED && psp->pr_what == FLTBPT) in dt_proc_control()
468 else if (psp->pr_why == PR_SYSENTRY && in dt_proc_control()
469 IS_SYS_FORK(psp->pr_what)) in dt_proc_control()
471 else if (psp->pr_why == PR_SYSEXIT && in dt_proc_control()
472 IS_SYS_FORK(psp->pr_what)) in dt_proc_control()
474 else if (psp->pr_why == PR_SYSEXIT && in dt_proc_control()
475 IS_SYS_EXEC(psp->pr_what)) in dt_proc_control()
/freebsd/sys/arm/arm/
H A Dexec_machdep.c278 struct sigacts *psp; in sendsig() local
287 psp = p->p_sigacts; in sendsig()
288 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig()
297 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig()
329 mtx_unlock(&psp->ps_mtx); in sendsig()
371 mtx_lock(&psp->ps_mtx); in sendsig()
/freebsd/sys/riscv/riscv/
H A Dexec_machdep.c342 struct sigacts *psp; in sendsig() local
353 psp = p->p_sigacts; in sendsig()
354 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig()
364 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig()
383 mtx_unlock(&psp->ps_mtx); in sendsig()
412 mtx_lock(&psp->ps_mtx); in sendsig()
/freebsd/sys/amd64/linux32/
H A Dlinux32_sysvec.c150 struct sigacts *psp; in linux_rt_sendsig() local
160 psp = p->p_sigacts; in linux_rt_sendsig()
161 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_rt_sendsig()
167 SIGISMEMBER(psp->ps_sigonstack, sig)) { in linux_rt_sendsig()
172 mtx_unlock(&psp->ps_mtx); in linux_rt_sendsig()
242 mtx_lock(&psp->ps_mtx); in linux_rt_sendsig()
260 struct sigacts *psp; in linux_sendsig() local
270 psp = p->p_sigacts; in linux_sendsig()
271 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_sendsig()
272 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in linux_sendsig()
[all …]
/freebsd/sys/arm64/arm64/
H A Dfreebsd32_machdep.c354 struct sigacts *psp; in freebsd32_sendsig() local
365 psp = p->p_sigacts; in freebsd32_sendsig()
366 mtx_assert(&psp->ps_mtx, MA_OWNED); in freebsd32_sendsig()
375 SIGISMEMBER(psp->ps_sigonstack, sig)) { in freebsd32_sendsig()
406 mtx_unlock(&psp->ps_mtx); in freebsd32_sendsig()
456 mtx_lock(&psp->ps_mtx); in freebsd32_sendsig()
H A Dexec_machdep.c737 struct sigacts *psp; in sendsig() local
746 psp = p->p_sigacts; in sendsig()
747 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig()
757 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig()
775 mtx_unlock(&psp->ps_mtx); in sendsig()
825 mtx_lock(&psp->ps_mtx); in sendsig()
/freebsd/sys/arm64/linux/
H A Dlinux_sysvec.c307 struct sigacts *psp; in linux_rt_sendsig() local
315 psp = p->p_sigacts; in linux_rt_sendsig()
316 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_rt_sendsig()
320 issiginfo = SIGISMEMBER(psp->ps_siginfo, sig); in linux_rt_sendsig()
327 SIGISMEMBER(psp->ps_sigonstack, sig)) { in linux_rt_sendsig()
348 mtx_unlock(&psp->ps_mtx); in linux_rt_sendsig()
422 mtx_lock(&psp->ps_mtx); in linux_rt_sendsig()
/freebsd/contrib/mandoc/
H A Dtbl_html.c121 const struct tbl_span *psp; in print_tbl() local
165 if ((psp = sp->next) != NULL) { in print_tbl()
166 switch (psp->pos) { in print_tbl()
/freebsd/usr.sbin/fwget/pci/
H A Dpci_video_amd144 addpkg "gpu-firmware-amd-kmod-psp-13-0-0"
151 addpkg "gpu-firmware-amd-kmod-psp-13-0-4"
159 addpkg "gpu-firmware-amd-kmod-psp-13-0-11"
165 addpkg "gpu-firmware-amd-kmod-psp-13-0-5"
/freebsd/sys/amd64/linux/
H A Dlinux_sysvec.c523 struct sigacts *psp; in linux_rt_sendsig() local
533 psp = p->p_sigacts; in linux_rt_sendsig()
534 issiginfo = SIGISMEMBER(psp->ps_siginfo, sig); in linux_rt_sendsig()
536 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_rt_sendsig()
551 SIGISMEMBER(psp->ps_sigonstack, sig)) { in linux_rt_sendsig()
556 mtx_unlock(&psp->ps_mtx); in linux_rt_sendsig()
628 mtx_lock(&psp->ps_mtx); in linux_rt_sendsig()
/freebsd/sys/amd64/amd64/
H A Dexec_machdep.c114 struct sigacts *psp; in sendsig() local
127 psp = p->p_sigacts; in sendsig()
128 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig()
150 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig()
170 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in sendsig()
185 mtx_unlock(&psp->ps_mtx); in sendsig()
213 mtx_lock(&psp->ps_mtx); in sendsig()
/freebsd/sys/powerpc/powerpc/
H A Dexec_machdep.c153 struct sigacts *psp; in sendsig() local
172 psp = p->p_sigacts; in sendsig()
173 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig()
251 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig()
287 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in sendsig()
311 mtx_unlock(&psp->ps_mtx); in sendsig()
332 mtx_lock(&psp->ps_mtx); in sendsig()
/freebsd/cddl/contrib/opensolaris/cmd/plockstat/
H A Dplockstat.c793 const priv_set_t *psp; in main() local
794 if ((psp = ucred_getprivset(ucp, PRIV_EFFECTIVE)) != NULL && in main()
795 !priv_ismember(psp, PRIV_DTRACE_PROC)) { in main()
/freebsd/contrib/ntp/
H A DCommitLog8927 ChangeSet@1.3923, 2020-10-21 02:36:52-04:00, stenn@psp-deb2.ntp.org
8933 ChangeSet@1.3914, 2020-10-20 07:35:29+00:00, stenn@psp-deb1.ntp.org
8939 ChangeSet@1.3912.5.4, 2020-10-20 07:12:32+00:00, stenn@psp-deb1.ntp.org
9178 ChangeSet@1.3912.5.2, 2020-10-14 06:15:18+00:00, stenn@psp-deb1.ntp.org
9184 ChangeSet@1.3912.5.1, 2020-10-14 05:52:43+00:00, stenn@psp-deb1.ntp.org
9601 ChangeSet@1.3908, 2020-06-09 07:12:27-04:00, stenn@psp-deb2.ntp.org
9610 ChangeSet@1.3896.1.22, 2020-06-09 07:09:18-04:00, stenn@psp-deb2.ntp.org
9628 ChangeSet@1.3906, 2020-05-31 09:52:14+00:00, stenn@psp-deb1.ntp.org
9634 ChangeSet@1.3896.9.3, 2020-05-31 09:49:39+00:00, stenn@psp-deb1.ntp.org
9643 ChangeSet@1.3896.9.2, 2020-05-31 09:47:05+00:00, stenn@psp
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSystemRegister.td70 def : MClassSysReg<0, 0, 1, 0x809, "psp">;
/freebsd/contrib/unbound/
H A Dconfig.sub548 psp)
550 basic_os=psp
2091 | psp* \
/freebsd/contrib/libpcap/
H A Dconfig.sub495 psp)
497 basic_os=psp
1743 | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \
/freebsd/contrib/ncurses/
H A Dconfig.sub495 psp)
497 basic_os=psp
1743 | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \
/freebsd/contrib/byacc/
H A Dconfig.sub495 psp)
497 basic_os=psp
1741 | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \

12