Home
last modified time | relevance | path

Searched refs:NOCPU (Results 1 – 15 of 15) sorted by relevance

/freebsd-9-stable/sys/kern/
Dsched_4bsd.c280 SDT_PROBE2(sched, , , load__change, NOCPU, sched_tdcnt); in sched_load_add()
289 SDT_PROBE2(sched, , , load__change, NOCPU, sched_tdcnt); in sched_load_rem()
796 childtd->td_oncpu = NOCPU; in sched_fork_thread()
797 childtd->td_lastcpu = NOCPU; in sched_fork_thread()
992 td->td_oncpu = NOCPU; in sched_switch()
1137 (cpunum == NOCPU || me == cpunum)) in forward_wakeup()
1170 if (cpunum != NOCPU) { in forward_wakeup()
1191 if (cpunum == NOCPU) in forward_wakeup()
1238 if (td->td_lastcpu != NOCPU && THREAD_CAN_SCHED(td, td->td_lastcpu)) in sched_pickcpu()
1241 best = NOCPU; in sched_pickcpu()
[all …]
Dsubr_smp.c179 if (id == NOCPU) in forward_signal()
205 static volatile u_int stopping_cpu = NOCPU; in generic_stop_cpus()
223 while (atomic_cmpset_int(&stopping_cpu, NOCPU, in generic_stop_cpus()
225 while (stopping_cpu != NOCPU) in generic_stop_cpus()
242 stopping_cpu = NOCPU; in generic_stop_cpus()
Dkern_shutdown.c560 static volatile u_int panic_cpu = NOCPU; in panic()
581 while (atomic_cmpset_int(&panic_cpu, NOCPU, in panic()
583 while (panic_cpu != NOCPU) in panic()
Dkern_intr.c270 ie->ie_cpu = NOCPU; in intr_event_create()
303 if (cpu != NOCPU && CPU_ABSENT(cpu)) in intr_event_bind()
320 if (cpu == NOCPU) in intr_event_bind()
336 if (ie->ie_cpu == NOCPU) in intr_event_bind()
379 cpu = NOCPU; in intr_setaffinity()
388 if (cpu != NOCPU) in intr_setaffinity()
411 if (ie->ie_cpu == NOCPU) in intr_getaffinity()
Dsched_ule.c1840 td->td_oncpu = NOCPU; in sched_switch()
2038 child->td_oncpu = NOCPU; in sched_fork_thread()
2039 child->td_lastcpu = NOCPU; in sched_fork_thread()
2662 td->td_oncpu = NOCPU; in sched_throw()
Dkern_thread.c138 td->td_oncpu = NOCPU; in thread_ctor()
Dkern_racct.c1053 if ((cpuid != NOCPU) && (td != curthread)) in racct_proc_throttle()
Dsubr_witness.c2156 if (owner->td_critnest == 0 || owner->td_oncpu == NOCPU) in witness_display_spinlock()
/freebsd-9-stable/usr.sbin/config/
Dconfig.y11 %token NOCPU
170 NOCPU Save_id {
Dlang.l65 { "nocpu", NOCPU },
/freebsd-9-stable/sys/sparc64/sparc64/
Dintr_machdep.c269 if (assign_cpu && cpu != NOCPU) { in intr_assign_cpu()
545 if (iv->iv_event->ie_cpu != NOCPU && in intr_shuffle_irqs()
/freebsd-9-stable/sys/x86/x86/
Dintr_machdep.c318 if (assign_cpu && cpu != NOCPU) { in intr_assign_cpu()
542 if (isrc->is_event->ie_cpu != NOCPU) in intr_shuffle_irqs()
/freebsd-9-stable/gnu/usr.bin/gdb/kgdb/
Dtrgt_i386.c136 if (kt == NULL || kt->cpu == NOCPU) in kgdb_trgt_fetch_tss()
/freebsd-9-stable/sys/powerpc/powerpc/
Dintr_machdep.c297 if (cpu == NOCPU) in powerpc_assign_intr_cpu()
/freebsd-9-stable/sys/sys/
Dproc.h605 #define NOCPU 0xff /* For when we aren't on a CPU. */ macro