Symbol: LW_WEXIT
sys/arch/vax/vax/pmap.c
676
if (l->l_flag & (LW_SYSTEM | LW_WEXIT))
sys/kern/kern_exit.c
635
l2->l_flag |= LW_WEXIT;
sys/kern/kern_lwp.c
1728
if ((f & (LW_PENDSIG | LW_WCORE | LW_WEXIT)) == LW_PENDSIG) {
sys/kern/kern_lwp.c
1766
if ((f & LW_WEXIT) != 0) {
sys/kern/kern_lwp.c
450
if ((curl->l_flag & (LW_WEXIT | LW_WCORE)) != 0) {
sys/kern/kern_lwp.c
939
l2->l_flag |= (l1->l_flag & (LW_WEXIT | LW_WREBOOT | LW_WCORE));
sys/kern/kern_sig.c
2242
l->l_flag |= (LW_WCORE | LW_WEXIT | LW_WSUSPEND);
sys/kern/kern_sig.c
2274
t->l_flag |= (LW_WCORE | LW_WEXIT);
sys/kern/kern_sleepq.c
347
const int mask = LW_CANCELLED|LW_WEXIT|LW_WCORE|LW_PENDSIG;
sys/kern/kern_sleepq.c
365
if ((l->l_flag & (LW_CANCELLED|LW_WEXIT|LW_WCORE)) != 0) {
sys/kern/kern_sleepq.c
425
else if ((flag & (LW_CANCELLED | LW_WEXIT | LW_WCORE)) != 0)
sys/kern/sys_lwp.c
232
(l->l_flag & (LW_WCORE | LW_WEXIT)) != 0) {
sys/kern/sys_lwp.c
267
if ((l->l_flag | t->l_flag) & (LW_WCORE | LW_WEXIT)) {
sys/kern/sys_process.c
171
if ((l->l_flag & LW_WEXIT) || vm->vm_refcnt < 1)
sys/rump/librump/rumpkern/lwproc.c
292
KASSERT(l->l_flag & LW_WEXIT);
sys/rump/librump/rumpkern/lwproc.c
453
KASSERT(!(l->l_flag & LW_WEXIT) || newlwp);
sys/rump/librump/rumpkern/lwproc.c
466
if (l->l_flag & LW_WEXIT) {
sys/rump/librump/rumpkern/lwproc.c
497
if (l->l_flag & LW_WEXIT) {
sys/rump/librump/rumpkern/lwproc.c
512
if (l->l_refcnt == 0 || l->l_flag & LW_WEXIT)
sys/rump/librump/rumpkern/lwproc.c
516
KASSERT(l->l_refcnt == 0 && (l->l_flag & LW_WEXIT));
sys/rump/librump/rumpkern/lwproc.c
532
l->l_flag &= ~LW_WEXIT;
sys/rump/librump/rumpkern/lwproc.c
542
l->l_flag |= LW_WEXIT;
sys/rump/librump/rumpkern/lwproc.c
550
if (l->l_flag & LW_WEXIT)
sys/rump/librump/rumpkern/scheduler.c
416
if (__predict_false(l->l_flag & LW_WEXIT)) {
sys/rump/librump/rumpkern/scheduler.c
423
KASSERT(l->l_flag & LW_WEXIT);
sys/sys/lwp.h
306
#define LW_USERRET (LW_WEXIT | LW_PENDSIG | LW_WREBOOT | LW_WSUSPEND \