Home
last modified time | relevance | path

Searched refs:psp (Results 1 – 25 of 33) 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/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/amd64/ia32/
H A Dia32_signal.c342 struct sigacts *psp; in ia32_osendsig() local
351 psp = p->p_sigacts; 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()
521 mtx_unlock(&psp->ps_mtx); in freebsd4_ia32_sendsig()
545 mtx_lock(&psp->ps_mtx); in freebsd4_ia32_sendsig()
556 struct sigacts *psp; in ia32_sendsig() local
569 psp = p->p_sigacts; in ia32_sendsig()
[all …]
/freebsd/sys/i386/i386/
H A Dexec_machdep.c133 struct sigacts *psp; in osendsig() local
142 psp = p->p_sigacts; 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()
321 mtx_unlock(&psp->ps_mtx); in freebsd4_sendsig()
371 mtx_lock(&psp->ps_mtx); in freebsd4_sendsig()
381 struct sigacts *psp; in sendsig() local
394 psp = p->p_sigacts; in 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()
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()
287 mtx_unlock(&psp->ps_mtx); 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.c282 struct sigacts *psp; in sendsig() local
291 psp = p->p_sigacts; in sendsig()
292 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig()
301 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig()
323 mtx_unlock(&psp->ps_mtx); in sendsig()
367 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()
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()
288 mtx_unlock(&psp->ps_mtx); 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.c651 struct sigacts *psp; in sendsig() local
660 psp = p->p_sigacts; in sendsig()
661 mtx_assert(&psp->ps_mtx, MA_OWNED); in sendsig()
671 SIGISMEMBER(psp->ps_sigonstack, sig)) { in sendsig()
689 mtx_unlock(&psp->ps_mtx); in sendsig()
739 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.c117 const struct tbl_span *psp; in print_tbl() local
161 if ((psp = sp->next) != NULL) { in print_tbl()
162 switch (psp->pos) { in print_tbl()
/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/usr.sbin/fwget/pci/
H A Dpci_video_amd141 addpkg "gpu-firmware-amd-kmod-psp-13-0-0"
148 addpkg "gpu-firmware-amd-kmod-psp-13-0-4"
/freebsd/contrib/ntp/
H A DCommitLog29558 minor fixes, trying to link on psp-deb1
29561 minor fixes, trying to link on psp-deb1
33036 sntp/tests/g_crypto.cpp@1.6, stenn@psp-at1.ntp.org +0 -0
33956 tests/libntp/g_lfptest.h@1.6, stenn@psp-fb1.ntp.org +0 -0
36357 loaded math lib for some tests so building works on psp-at1 and psp-fb1
36402 for some reason this file isnt available on psp-deb1
96584 ntpd/complete.conf.in@1.24, stenn@psp-deb1.ntp.org +0 -0
103775 sntp/libopts/ao-strs.c@1.3, stenn@psp-fb1.ntp.org +1 -1
103778 sntp/libopts/ao-strs.h@1.2, stenn@psp-fb1.ntp.org +1 -1
103799 sntp/libopts/libopts.c@1.7, stenn@psp-fb1.ntp.org +0 -1
[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.sub495 psp)
497 basic_os=psp
1743 | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_80211.c5633 struct ieee80211_frame_pspoll *psp; in linuxkpi_ieee80211_pspoll_get() local
5636 skb = dev_alloc_skb(hw->extra_tx_headroom + sizeof(*psp)); in linuxkpi_ieee80211_pspoll_get()
5645 psp = skb_put_zero(skb, sizeof(*psp)); in linuxkpi_ieee80211_pspoll_get()
5646 psp->i_fc[0] = IEEE80211_FC0_VERSION_0; in linuxkpi_ieee80211_pspoll_get()
5647 psp->i_fc[0] |= IEEE80211_FC0_SUBTYPE_PS_POLL | IEEE80211_FC0_TYPE_CTL; in linuxkpi_ieee80211_pspoll_get()
5649 memcpy(&psp->i_aid, &v, sizeof(v)); in linuxkpi_ieee80211_pspoll_get()
5650 IEEE80211_ADDR_COPY(psp->i_bssid, vap->iv_bss->ni_macaddr); in linuxkpi_ieee80211_pspoll_get()
5651 IEEE80211_ADDR_COPY(psp->i_ta, vif->addr); in linuxkpi_ieee80211_pspoll_get()
/freebsd/contrib/dialog/
H A Dconfig.sub1698 | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \
/freebsd/contrib/sqlite3/
H A Dconfig.sub1729 | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \

12