Searched refs:p_flag (Results 1 - 25 of 83) sorted by relevance

1234

/netbsd-current/external/bsd/tmux/dist/
H A Dosdep-openbsd.c69 if ((p1->p_flag & P_SINTR) && !(p2->p_flag & P_SINTR))
71 if (!(p1->p_flag & P_SINTR) && (p2->p_flag & P_SINTR))
/netbsd-current/sys/kern/
H A Dsys_process_lwpstatus.c192 const bool pk32 = (curl->l_proc->p_flag & PK_32) != 0;
195 if ((l->l_proc->p_flag & PK_32) == 0) {
226 const bool pk32 = (curl->l_proc->p_flag & PK_32) != 0;
229 if ((l->l_proc->p_flag & PK_32) == 0) {
261 const bool pk32 = (curl->l_proc->p_flag & PK_32) != 0;
264 if ((l->l_proc->p_flag & PK_32) == 0) {
H A Dsys_sig.c421 else if (p->p_flag & PK_32) {
517 p->p_flag &= ~PK_NOCLDWAIT;
519 p->p_flag |= PK_NOCLDWAIT;
521 p->p_flag &= ~PK_NOCLDWAIT;
528 p->p_flag &= ~PK_CLDSIGIGN;
530 p->p_flag |= PK_CLDSIGIGN;
532 p->p_flag &= ~PK_CLDSIGIGN;
H A Dkern_proc.c217 .p_flag = PK_SYSTEM | PK_NOCLDWAIT,
309 if (kern_expose_address == 1 && !(p->p_flag & PK_KMEM))
1324 if (p->p_flag & PK_EXEC) {
1763 marker.p_flag = PK_MARKER;
1766 if (p->p_flag & PK_MARKER) {
1862 p->p_flag |= PK_SUGID;
2118 marker->p_flag = PK_MARKER;
2136 if ((p->p_flag & PK_MARKER) != 0)
2319 if (p->p_flag & PK_32) {
2420 if (P_ZOMBIE(p) || (p->p_flag
[all...]
H A Dkern_core.c162 if (p->p_flag & PK_SUGID) {
259 if ((p->p_flag & PK_SUGID) && security_setidcore_dump) {
H A Dkern_fork.c349 p2->p_flag =
350 p1->p_flag & (PK_SUGID | PK_NOCLDWAIT | PK_CLDSIGIGN | PK_32);
360 p2->p_flag |= (PK_SYSTEM | PK_NOCLDWAIT);
/netbsd-current/sys/arch/sparc64/sparc64/
H A Dprocess_machdep.c120 if (!(curproc->p_flag & PK_32)) {
154 if (!(curproc->p_flag & PK_32)) {
211 if (!(curproc->p_flag & PK_32)) {
241 if (!(curproc->p_flag & PK_32)) {
H A Dsyscall.c191 if ((p->p_flag & PK_32) != 0) {
317 if (p->p_flag & PK_32) {
/netbsd-current/sys/sys/
H A Dproc.h253 int p_flag; /* p: PK_* flags */ member in struct:proc
373 * These flags are kept in p_flag and are protected by p_lock. Access from
584 while (p != NULL && p->p_flag & PK_MARKER)
590 #define PROC_PTRSZ(p) (((p)->p_flag & PK_32) ? sizeof(int) : sizeof(void *))
591 #define PROC_REGSZ(p) (((p)->p_flag & PK_32) ? \
593 #define PROC_FPREGSZ(p) (((p)->p_flag & PK_32) ? \
595 #define PROC_DBREGSZ(p) (((p)->p_flag & PK_32) ? \
/netbsd-current/sys/dev/sun/
H A Devent.c127 if ((curproc->p_flag & PK_32) && ev_out32_hook != NULL)
143 if ((curproc->p_flag & PK_32) && ev_out32_hook != NULL)
/netbsd-current/sys/miscfs/procfs/
H A Dprocfs_cmdline.c83 if (P_ZOMBIE(p) || (p->p_flag & PK_SYSTEM) != 0) {
H A Dprocfs_map.c123 int width = (int)((curl->l_proc->p_flag & PK_32) ? sizeof(int32_t) :
/netbsd-current/sys/arch/amiga/stand/loadbsd/
H A Dloadbsd.c159 int p_flag = 1; variable
225 p_flag = 1;
228 p_flag = 0;
600 * if p_flag is set, select memory by priority
603 if ((!p_flag && segsz > *fmemsz) || (p_flag &&
/netbsd-current/sys/arch/amd64/amd64/
H A Dprocess_machdep.c116 const bool pk32 = (l->l_proc->p_flag & PK_32) != 0;
182 const bool pk32 = (l->l_proc->p_flag & PK_32) != 0;
278 const bool pk32 = (l->l_proc->p_flag & PK_32) != 0;
336 if (__predict_false(l->l_proc->p_flag & PK_32)) {
429 if (p->p_flag & PK_SYSTEM)
/netbsd-current/sys/arch/aarch64/aarch64/
H A Dnetbsd32_machdep.c72 p->p_flag |= PK_32;
138 if ((p->p_flag & PK_32) == 0)
163 if ((p->p_flag & PK_32) == 0)
207 if ((p->p_flag & PK_32) == 0)
237 if ((p->p_flag & PK_32) == 0)
404 KASSERT(p->p_flag & PK_32);
H A Dexec_machdep.c149 p->p_flag &= ~PK_32;
/netbsd-current/sys/arch/amiga/stand/bootblock/boot/
H A Dmain.c100 int p_flag = 0; local
204 p_flag = 1;
323 } else if (mapped1to1 && ((!p_flag && fmemsz < size) ||
324 (p_flag && (mempri < mh->Pri ||
/netbsd-current/usr.bin/pkill/
H A Dpkill.c291 if ((kp->p_flag & P_SYSTEM) != 0 || kp->p_pid == mypid)
331 if ((kp->p_flag & P_SYSTEM) != 0)
376 (kp->p_flag & P_CONTROLT) == 0)
433 if ((kp->p_flag & P_SYSTEM) != 0)
/netbsd-current/sys/ddb/
H A Ddb_proc.c242 p.p_stat, p.p_flag,
329 p.p_comm, p.p_pid, (long)pp, (long)p.p_vmspace, p.p_flag);
/netbsd-current/external/bsd/top/dist/machine/
H A Dm_decosf1.c256 int p_flag; member in struct:osf1_top_proc
511 pp->p_flag = p_i[k].pi_flag;
524 fprintf(stderr, "pid = %d ruid = %d comm = %s p_mach_state = %d p_stat = %d p_flag = 0x%x\n",
526 pp->p_mach_state, p_i[k].pi_status, pp->p_flag);
614 if (!(pp->p_flag & SLOAD)) {
/netbsd-current/external/bsd/libproc/dist/
H A Dproc_create.c85 phdl->model = (kp.p_flag & P_32) ? PR_MODEL_ILP32 : PR_MODEL_LP64;
/netbsd-current/sys/arch/riscv/riscv/
H A Dnetbsd32_machdep.c52 l->l_proc->p_flag |= PK_32;
H A Dsyscall.c87 const bool pk32_p = (p->p_flag & PK_32) != 0;
/netbsd-current/sys/arch/x86/x86/
H A Dlinux_trap.c186 if ((l->l_proc->p_flag & PK_32) == 0) {
/netbsd-current/external/bsd/less/dist/
H A Dcharset.c43 int *p_flag; member in struct:charset
326 if (p->p_flag != NULL)
329 *(p->p_flag) = 1 + (GetConsoleOutputCP() != CP_UTF8);
331 *(p->p_flag) = 1;

Completed in 521 milliseconds

1234