OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPUF_RUNNING
(Results
1 - 16
of
16
) sorted by relevancy
/src/sys/arch/hppa/hppa/
ipifuncs.c
108
KASSERT(ci->ci_flags &
CPUF_RUNNING
);
140
if (ci != curcpu() && (ci->ci_flags &
CPUF_RUNNING
))
160
ci->ci_flags &= ~
CPUF_RUNNING
;
/src/sys/arch/x86/x86/
ipi.c
106
if (__predict_false((ci->ci_flags &
CPUF_RUNNING
) == 0))
141
if ((ci->ci_flags &
CPUF_RUNNING
) == 0)
179
atomic_and_32(&ci->ci_flags, ~
CPUF_RUNNING
);
cpu.c
743
atomic_or_32(&ci->ci_flags,
CPUF_RUNNING
);
746
atomic_or_32(&ci->ci_flags,
CPUF_RUNNING
);
879
for (i = 100000; (!(ci->ci_flags &
CPUF_RUNNING
)) && i > 0; i--) {
882
if ((ci->ci_flags &
CPUF_RUNNING
) == 0) {
1003
KASSERT((ci->ci_flags &
CPUF_RUNNING
) == 0);
/src/sys/arch/hppa/dev/
cpu.c
206
ci->ci_flags |= CPUF_PRIMARY|
CPUF_RUNNING
;
266
while (!(ci->ci_flags &
CPUF_RUNNING
) && j++ < 10000)
268
if (!(ci->ci_flags &
CPUF_RUNNING
))
301
ci->ci_flags |=
CPUF_RUNNING
;
/src/sys/arch/x86/acpi/
acpi_wakeup.c
202
atomic_and_32(&ci->ci_flags, ~
CPUF_RUNNING
);
288
atomic_or_32(&ci->ci_flags,
CPUF_RUNNING
);
404
while ((ci->ci_flags &
CPUF_RUNNING
) == 0)
/src/sys/arch/alpha/include/
cpu.h
163
#define
CPUF_RUNNING
0x04 /* CPU is running */
/src/sys/arch/xen/x86/
xen_ipi.c
174
if ((ci->ci_flags &
CPUF_RUNNING
) == 0) {
212
if (ci->ci_flags & (
CPUF_RUNNING
)) {
cpu.c
582
atomic_or_32(&ci->ci_flags,
CPUF_RUNNING
);
679
for (i = 100000; (!(ci->ci_flags &
CPUF_RUNNING
)) && i > 0; i--) {
682
if ((ci->ci_flags &
CPUF_RUNNING
) == 0) {
725
KASSERT((ci->ci_flags &
CPUF_RUNNING
) == 0);
/src/sys/arch/mips/include/
cpu.h
155
#define
CPUF_RUNNING
__BIT(2) /* CPU is running */
/src/sys/arch/riscv/include/
cpu.h
92
#define
CPUF_RUNNING
__BIT(2) /* CPU is running */
/src/sys/arch/alpha/alpha/
cpu.c
86
.ci_flags = CPUF_PRIMARY|
CPUF_RUNNING
,
455
KASSERT(ci->ci_flags &
CPUF_RUNNING
);
708
atomic_or_ulong(&ci->ci_flags,
CPUF_RUNNING
);
/src/sys/arch/hppa/include/
cpu.h
317
#define
CPUF_RUNNING
0x0002 /* ... is running. */
/src/sys/arch/riscv/riscv/
cpu.c
116
.ci_flags = CPUF_PRIMARY | CPUF_PRESENT |
CPUF_RUNNING
,
cpu_subr.c
132
atomic_or_ulong(&ci->ci_flags,
CPUF_RUNNING
);
/src/sys/arch/x86/include/
cpu.h
373
#define
CPUF_RUNNING
0x2000 /* CPU is running */
/src/sys/arch/mips/mips/
cpu_subr.c
97
.ci_flags = CPUF_PRIMARY|CPUF_PRESENT|
CPUF_RUNNING
,
999
atomic_or_ulong(&ci->ci_flags,
CPUF_RUNNING
);
Completed in 34 milliseconds
Indexes created Mon Feb 23 08:20:23 UTC 2026