HomeSort by: relevance | last modified time | path
    Searched refs:LP_RUNNING (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/kern/
kern_idle.c 60 KASSERT((l->l_pflag & LP_RUNNING) != 0);
124 l->l_pflag |= LP_RUNNING;
kern_synch.c 568 newl->l_pflag |= LP_RUNNING;
579 newl->l_pflag |= LP_RUNNING;
604 * other actor, when it's known the LWP is not running (the LP_RUNNING flag
628 KASSERT((l->l_pflag & LP_RUNNING) != 0);
657 newl->l_pflag |= LP_RUNNING;
785 l->l_pflag &= ~LP_RUNNING;
826 * don't touch after clearing LP_RUNNING as it could be
833 KASSERT((prevlwp->l_pflag & LP_RUNNING) != 0);
837 prevlwp->l_pflag & ~LP_RUNNING);
839 prevlwp->l_pflag &= ~LP_RUNNING;
    [all...]
kern_softint.c 810 if ((pinned->l_pflag & LP_RUNNING) == 0 || curlwp->l_stat != LSIDL) {
847 l->l_pflag |= LP_RUNNING;
869 l->l_pflag &= ~LP_RUNNING;
kern_lwp.c 89 * The LP_RUNNING flag in lwp::l_pflag indicates that an LWP is running.
1035 KASSERT((prev->l_pflag & LP_RUNNING) != 0);
1041 * zombie, don't touch after clearing LP_RUNNING as it could be
1048 prev->l_pflag & ~LP_RUNNING);
1050 prev->l_pflag &= ~LP_RUNNING;
1276 while (__predict_false((atomic_load_acquire(&l->l_pflag) & LP_RUNNING)
1382 if ((l->l_pflag & LP_RUNNING) != 0) {
kern_sleepq.c 156 if ((l->l_pflag & LP_RUNNING) != 0) {
init_main.c 296 l->l_pflag |= LP_RUNNING;
kern_resource.c 479 if ((l->l_pflag & LP_RUNNING) != 0 &&
  /src/sys/ddb/
db_proc.c 199 (l.l_pflag & LP_RUNNING) != 0);
257 (l.l_pflag & LP_RUNNING) != 0);
335 (l.l_pflag & LP_RUNNING) != 0);
  /src/sys/rump/librump/rumpkern/
lwproc.c 455 if (__predict_false(newlwp && (newlwp->l_pflag & LP_RUNNING)))
460 l->l_pflag &= ~LP_RUNNING;
475 newlwp->l_pflag |= LP_RUNNING;
492 l->l_pflag &= ~LP_RUNNING;
scheduler.c 429 lwp0.l_pflag &= ~LP_RUNNING;
  /src/sys/sys/
lwp.h 276 * LP_RUNNING is typically updated with the LWP locked, but not always in
291 #define LP_RUNNING 0x20000000 /* Active on a CPU */
  /src/sys/arch/aarch64/aarch64/
db_trace.c 784 (l.l_pflag & LP_RUNNING) != 0) {
  /src/sys/arch/vax/vax/
pmap.c 680 if ((l->l_pflag & LP_RUNNING) != 0)

Completed in 20 milliseconds