Home
last modified time | relevance | path

Searched refs:LP_RUNNING (Results 1 – 11 of 11) sorted by relevance

/dports/misc/rump/buildrump.sh-b914579/src/sys/kern/
H A Dkern_synch.c482 newl->l_pflag |= LP_RUNNING; in nextlwp()
487 newl->l_pflag |= LP_RUNNING; in nextlwp()
525 KASSERT((l->l_pflag & LP_RUNNING) != 0); in mi_switch()
554 newl->l_pflag |= LP_RUNNING; in mi_switch()
664 KASSERT((l->l_pflag & LP_RUNNING) != 0); in mi_switch()
665 l->l_pflag &= ~LP_RUNNING; in mi_switch()
825 newl->l_pflag |= LP_RUNNING; in lwp_exit_switchaway()
834 l->l_pflag &= ~LP_RUNNING; in lwp_exit_switchaway()
940 if ((l->l_pflag & LP_RUNNING) != 0) { in setrunnable()
H A Dkern_idle.c72 l->l_pflag |= LP_RUNNING; in idle_loop()
H A Dkern_softint.c850 KASSERT((pinned->l_pflag & LP_RUNNING) != 0); in softint_dispatch()
863 l->l_pflag |= (LP_RUNNING | timing); in softint_dispatch()
902 l->l_pflag &= ~LP_RUNNING; in softint_dispatch()
H A Dkern_sleepq.c137 if ((l->l_pflag & LP_RUNNING) != 0) { in sleepq_remove()
H A Dkern_lwp.c1216 if ((l->l_pflag & LP_RUNNING) != 0 || l->l_cpu->ci_curlwp == l) { in lwp_free()
1220 while ((l->l_pflag & LP_RUNNING) != 0 || in lwp_free()
1287 if ((l->l_pflag & LP_RUNNING) != 0) { in lwp_migrate()
H A Dinit_main.c273 l->l_pflag |= LP_RUNNING; in main()
H A Dkern_resource.c509 if ((l->l_pflag & LP_RUNNING) != 0) { in calcru()
/dports/misc/rump/buildrump.sh-b914579/src/sys/ddb/
H A Ddb_proc.c186 (l.l_pflag & LP_RUNNING) != 0); in db_show_all_procs()
241 (l.l_pflag & LP_RUNNING) != 0); in db_show_all_procs()
317 (l.l_pflag & LP_RUNNING) != 0); in db_show_proc()
/dports/misc/rump/buildrump.sh-b914579/src/sys/rump/librump/rumpkern/
H A Dlwproc.c475 if (__predict_false(newlwp && (newlwp->l_pflag & LP_RUNNING))) in rump_lwproc_switch()
480 l->l_pflag &= ~LP_RUNNING; in rump_lwproc_switch()
495 newlwp->l_pflag |= LP_RUNNING; in rump_lwproc_switch()
512 l->l_pflag &= ~LP_RUNNING; in rump_lwproc_switch()
H A Dscheduler.c418 lwp0.l_pflag &= ~LP_RUNNING; in rump_unschedule()
/dports/misc/rump/buildrump.sh-b914579/src/sys/sys/
H A Dlwp.h259 #define LP_RUNNING 0x20000000 /* Active on a CPU */ macro