Home
last modified time | relevance | path

Searched refs:P_INMEM (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/vm/
H A Dvm_swapout.c456 if ((p->p_flag & P_INMEM) == 0) in vm_daemon()
609 if ((p->p_flag & P_INMEM) == 0) { in faultin()
673 P_SWAPPINGIN | P_INMEM)) != 0) { in swapper_selector()
763 if (p->p_state == PRS_NORMAL && (p->p_flag & (P_INMEM | in swapper()
802 P_TRACED | P_SWAPPINGOUT | P_SWAPPINGIN | P_INMEM)) != in swapout_procs()
803 P_INMEM) { in swapout_procs()
893 p->p_flag |= P_INMEM; in swapclear()
908 KASSERT((p->p_flag & (P_INMEM | P_SWAPPINGOUT | P_SWAPPINGIN)) == in swapout()
909 P_INMEM, ("swapout: lost a swapout race?")); in swapout()
919 p->p_flag &= ~P_INMEM; in swapout()
H A Dvm_swapout_dummy.c114 if ((p->p_flag & P_INMEM) == 0) in faultin()
/f-stack/freebsd/ddb/
H A Ddb_thread.c93 if (thr->td_proc->p_flag & P_INMEM) { in db_show_threads()
H A Ddb_command.c841 if (td->td_proc != NULL && (td->td_proc->p_flag & P_INMEM) == 0) in db_stack_trace()
868 if (td->td_proc->p_flag & P_INMEM) in _db_stack_trace_all()
H A Ddb_ps.c218 if (!(p->p_flag & P_INMEM)) in db_ps_proc()
/f-stack/freebsd/i386/linux/
H A Dlinux_ptrace.c220 if (cpu_fxsr == 0 || (td->td_proc->p_flag & P_INMEM) == 0) in linux_proc_read_fpxregs()
231 if (cpu_fxsr == 0 || (td->td_proc->p_flag & P_INMEM) == 0) in linux_proc_write_fpxregs()
/f-stack/freebsd/kern/
H A Dinit_main.c494 p->p_flag = P_SYSTEM | P_INMEM | P_KPROC; in proc0_init()
810 initproc->p_flag |= P_SYSTEM | P_INMEM; in create_init()
H A Dkern_racct.c346 if ((p->p_flag & P_INMEM) == 0) in racct_getpcpu()
H A Dkern_fork.c486 p2->p_flag = P_INMEM; in do_fork()
H A Dsys_process.c102 if ((td->td_proc->p_flag & P_INMEM) == 0) \
H A Dkern_proc.c1121 if (kp->ki_flag & P_INMEM) in fill_kinfo_proc_only()
H A Dkern_sig.c3249 if ((p->p_flag & (P_INMEM | P_SWAPPINGIN)) == 0) in proc_wkilled()
/f-stack/lib/
H A Dff_init_main.c408 p->p_flag = P_SYSTEM | P_INMEM; in proc0_init()
/f-stack/freebsd/sys/
H A Dproc.h783 #define P_INMEM 0x10000000 /* Loaded into memory. */ macro
943 if (((p)->p_flag & P_INMEM) == 0) \