| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/sys/ |
| H A D | procset.h | 137 #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-12.1/lib/libproc/ |
| H A D | proc_util.c | 217 lwpstatus_t *psp = &phdl->lwps; in proc_getlwpstatus() local 231 psp->pr_why = PR_FAULTED; in proc_getlwpstatus() 232 psp->pr_what = FLTBPT; in proc_getlwpstatus() 234 psp->pr_why = PR_SIGNALLED; in proc_getlwpstatus() 235 psp->pr_what = siginfo->si_signo; in proc_getlwpstatus() 238 psp->pr_why = PR_SYSENTRY; in proc_getlwpstatus() 240 psp->pr_why = PR_SYSEXIT; in proc_getlwpstatus() 243 return (psp); in proc_getlwpstatus()
|
| /freebsd-12.1/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_proc.c | 374 if (psp->pr_lwp.pr_errno != 0) in dt_proc_attach() 441 lwpid_t lwpid = psp->pr_lwpid; in dt_proc_waitrun() 466 psp = &Pstatus(P)->pr_lwp; in dt_proc_waitrun() 596 const lwpstatus_t *psp; in dt_proc_control() local 621 psp = &Pstatus(P)->pr_lwp; in dt_proc_control() 623 psp = proc_getlwpstatus(P); in dt_proc_control() 627 pid, psp->pr_why, psp->pr_what); in dt_proc_control() 655 if (psp->pr_why == PR_FAULTED && psp->pr_what == FLTBPT) in dt_proc_control() 658 IS_SYS_FORK(psp->pr_what)) in dt_proc_control() 661 IS_SYS_FORK(psp->pr_what)) in dt_proc_control() [all …]
|
| /freebsd-12.1/sys/amd64/ia32/ |
| H A D | ia32_signal.c | 343 struct sigacts *psp; in ia32_osendsig() local 352 psp = p->p_sigacts; in ia32_osendsig() 383 mtx_unlock(&psp->ps_mtx); in ia32_osendsig() 432 mtx_lock(&psp->ps_mtx); in ia32_osendsig() 444 struct sigacts *psp; in freebsd4_ia32_sendsig() local 455 psp = p->p_sigacts; in freebsd4_ia32_sendsig() 520 mtx_unlock(&psp->ps_mtx); in freebsd4_ia32_sendsig() 544 mtx_lock(&psp->ps_mtx); in freebsd4_ia32_sendsig() 555 struct sigacts *psp; in ia32_sendsig() local 568 psp = p->p_sigacts; in ia32_sendsig() [all …]
|
| /freebsd-12.1/contrib/nvi/cl/ |
| H A D | cl_funcs.c | 527 SCR *psp, *tsp; in cl_refresh() local 552 for (psp = sp; psp != NULL; psp = TAILQ_NEXT(psp, q)) in cl_refresh() 553 for (tsp = TAILQ_NEXT(psp, q); tsp != NULL; in cl_refresh() 555 if (psp->roff == tsp->roff) { in cl_refresh() 556 if (psp->coff + psp->cols + 1 == tsp->coff) in cl_refresh() 557 cl_rdiv(psp); in cl_refresh() 559 if (tsp->coff + tsp->cols + 1 == psp->coff) in cl_refresh()
|
| /freebsd-12.1/contrib/gcc/config/ia64/ |
| H A D | linux-unwind.h | 56 } *frame_ = (struct sigframe *)context->psp; in ia64_fallback_frame_state() 80 context->psp = sc->sc_gr[12]; in ia64_fallback_frame_state() 114 = (unsigned long)&(sc->sc_ip) - context->psp; in ia64_fallback_frame_state() 135 } *frame = (struct sigframe *)context->psp; in ia64_handle_unwabi()
|
| H A D | unwind-ia64.c | 196 unsigned long psp; /* previous sp value */ member 1754 return (_Unwind_Ptr) context->psp; in _Unwind_GetCFA() 1919 addr = (void *)(context->psp + rval); in uw_update_reg_address() 2009 context->psp = *(unsigned long *)addr; in uw_update_reg_address() 2026 context->sp = context->psp; in uw_update_context() 2032 context->psp = context->psp + fs->curr.reg[UNW_REG_PSP].val; in uw_update_context() 2093 void *psp = __builtin_dwarf_cfa () - 16; in uw_init_context_1() local 2115 context->psp = (unsigned long) psp; in uw_init_context_1() 2169 : : "i"(offsetof (struct _Unwind_Context, psp))); in uw_install_context()
|
| /freebsd-12.1/sys/mips/mips/ |
| H A D | pm_machdep.c | 92 struct sigacts *psp; in sendsig() local 101 psp = p->p_sigacts; in sendsig() 102 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig() 131 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig() 142 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in sendsig() 159 mtx_unlock(&psp->ps_mtx); in sendsig() 182 mtx_lock(&psp->ps_mtx); in sendsig()
|
| H A D | freebsd32_machdep.c | 375 struct sigacts *psp; in freebsd32_sendsig() local 385 psp = p->p_sigacts; in freebsd32_sendsig() 386 mtx_assert(&psp->ps_mtx, MA_OWNED); in freebsd32_sendsig() 417 SIGISMEMBER(psp->ps_sigonstack, sig)) { in freebsd32_sendsig() 428 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in freebsd32_sendsig() 444 mtx_unlock(&psp->ps_mtx); in freebsd32_sendsig() 467 mtx_lock(&psp->ps_mtx); in freebsd32_sendsig()
|
| /freebsd-12.1/sys/amd64/linux32/ |
| H A D | linux32_sysvec.c | 274 struct sigacts *psp; in linux_rt_sendsig() local 284 psp = p->p_sigacts; in linux_rt_sendsig() 285 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_rt_sendsig() 301 mtx_unlock(&psp->ps_mtx); in linux_rt_sendsig() 386 mtx_lock(&psp->ps_mtx); in linux_rt_sendsig() 405 struct sigacts *psp; in linux_sendsig() local 415 psp = p->p_sigacts; in linux_sendsig() 416 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_sendsig() 417 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in linux_sendsig() 439 mtx_unlock(&psp->ps_mtx); in linux_sendsig() [all …]
|
| /freebsd-12.1/sys/i386/linux/ |
| H A D | linux_sysvec.c | 384 struct sigacts *psp; in linux_rt_sendsig() local 393 psp = p->p_sigacts; in linux_rt_sendsig() 394 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_rt_sendsig() 410 mtx_unlock(&psp->ps_mtx); in linux_rt_sendsig() 490 mtx_lock(&psp->ps_mtx); in linux_rt_sendsig() 509 struct sigacts *psp; in linux_sendsig() local 517 psp = p->p_sigacts; in linux_sendsig() 520 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_sendsig() 521 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in linux_sendsig() 542 mtx_unlock(&psp->ps_mtx); in linux_sendsig() [all …]
|
| /freebsd-12.1/contrib/mandoc/ |
| H A D | tbl_html.c | 117 const struct tbl_span *psp; in print_tbl() local 157 if ((psp = sp->next) != NULL) { in print_tbl() 158 switch (psp->pos) { in print_tbl()
|
| /freebsd-12.1/sys/i386/i386/ |
| H A D | machdep.c | 339 struct sigacts *psp; in osendsig() local 348 psp = p->p_sigacts; in osendsig() 381 mtx_unlock(&psp->ps_mtx); in osendsig() 457 mtx_lock(&psp->ps_mtx); in osendsig() 468 struct sigacts *psp; in freebsd4_sendsig() local 477 psp = p->p_sigacts; in freebsd4_sendsig() 527 mtx_unlock(&psp->ps_mtx); in freebsd4_sendsig() 577 mtx_lock(&psp->ps_mtx); in freebsd4_sendsig() 587 struct sigacts *psp; in sendsig() local 600 psp = p->p_sigacts; in sendsig() [all …]
|
| /freebsd-12.1/sys/sparc64/sparc64/ |
| H A D | machdep.c | 607 struct sigacts *psp; in sendsig() local 621 psp = p->p_sigacts; in sendsig() 622 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig() 651 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig() 656 mtx_unlock(&psp->ps_mtx); in sendsig() 665 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in sendsig() 699 mtx_lock(&psp->ps_mtx); in sendsig()
|
| /freebsd-12.1/sys/riscv/riscv/ |
| H A D | machdep.c | 576 struct sigacts *psp; in sendsig() local 587 psp = p->p_sigacts; in sendsig() 588 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig() 598 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig() 618 mtx_unlock(&psp->ps_mtx); in sendsig() 647 mtx_lock(&psp->ps_mtx); in sendsig()
|
| /freebsd-12.1/sys/amd64/linux/ |
| H A D | linux_sysvec.c | 569 struct sigacts *psp; in linux_rt_sendsig() local 579 psp = p->p_sigacts; in linux_rt_sendsig() 581 mtx_assert(&psp->ps_mtx, MA_OWNED); in linux_rt_sendsig() 590 SIGISMEMBER(psp->ps_sigonstack, sig)) { in linux_rt_sendsig() 597 mtx_unlock(&psp->ps_mtx); in linux_rt_sendsig() 661 mtx_lock(&psp->ps_mtx); in linux_rt_sendsig()
|
| /freebsd-12.1/sys/powerpc/powerpc/ |
| H A D | exec_machdep.c | 129 struct sigacts *psp; in sendsig() local 147 psp = p->p_sigacts; in sendsig() 148 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig() 223 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig() 257 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in sendsig() 281 mtx_unlock(&psp->ps_mtx); in sendsig() 302 mtx_lock(&psp->ps_mtx); in sendsig()
|
| /freebsd-12.1/sys/arm64/arm64/ |
| H A D | machdep.c | 624 struct sigacts *psp; in sendsig() local 633 psp = p->p_sigacts; in sendsig() 634 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig() 644 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig() 667 mtx_unlock(&psp->ps_mtx); in sendsig() 695 mtx_lock(&psp->ps_mtx); in sendsig()
|
| /freebsd-12.1/sys/arm/arm/ |
| H A D | machdep.c | 608 struct sigacts *psp; local 619 psp = p->p_sigacts; 620 mtx_assert(&psp->ps_mtx, MA_OWNED); 629 SIGISMEMBER(psp->ps_sigonstack, sig)) { 659 mtx_unlock(&psp->ps_mtx); 703 mtx_lock(&psp->ps_mtx);
|
| /freebsd-12.1/cddl/contrib/opensolaris/cmd/plockstat/ |
| H A D | plockstat.c | 793 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-12.1/contrib/ntp/ |
| H A D | CommitLog | 19489 minor fixes, trying to link on psp-deb1 19492 minor fixes, trying to link on psp-deb1 22967 sntp/tests/[email protected], stenn@psp-at1.ntp.org +0 -0 23887 tests/libntp/[email protected], stenn@psp-fb1.ntp.org +0 -0 26288 loaded math lib for some tests so building works on psp-at1 and psp-fb1 26333 for some reason this file isnt available on psp-deb1 86515 ntpd/[email protected], stenn@psp-deb1.ntp.org +0 -0 93706 sntp/libopts/[email protected], stenn@psp-fb1.ntp.org +1 -1 93709 sntp/libopts/[email protected], stenn@psp-fb1.ntp.org +1 -1 93730 sntp/libopts/[email protected], stenn@psp-fb1.ntp.org +0 -1 [all …]
|
| /freebsd-12.1/sys/amd64/amd64/ |
| H A D | machdep.c | 353 struct sigacts *psp; in sendsig() local 366 psp = p->p_sigacts; in sendsig() 367 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig() 399 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig() 419 if (SIGISMEMBER(psp->ps_siginfo, sig)) { in sendsig() 434 mtx_unlock(&psp->ps_mtx); in sendsig() 462 mtx_lock(&psp->ps_mtx); in sendsig()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMSystemRegister.td | 71 def : MClassSysReg<0, 0, 1, 0x809, "psp">;
|
| /freebsd-12.1/contrib/binutils/gas/config/ |
| H A D | tc-ia64.h | 258 unsigned long psp; member
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | modulo-sched.c | 1366 sbitmap psp = sbitmap_alloc (ps->g->num_nodes); in get_sched_window() local 1374 sbitmap_zero (psp); in get_sched_window() 1376 psp_not_empty = sbitmap_a_and_b_cg (psp, u_node_preds, sched_nodes); in get_sched_window() 1472 sbitmap_free (psp); in get_sched_window()
|