diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2021-07-24 08:21:14 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2021-07-24 08:21:14 +0000 |
commit | 355a181f87e40a5e5fa65ee6cd9c5aebdd15bf03 (patch) | |
tree | 27705794d05663f326e8a0fa8faca9243adb4865 /sys/arch/mips64/include | |
parent | 9a3087d51dd0d90e1aca7018ce0d28dd8f7ddf88 (diff) |
Replace cpus_running with CPU_IS_RUNNING().
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r-- | sys/arch/mips64/include/cpu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/cpu.h b/sys/arch/mips64/include/cpu.h index 57aa201089a..d3831070284 100644 --- a/sys/arch/mips64/include/cpu.h +++ b/sys/arch/mips64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.135 2021/07/06 09:34:06 kettenis Exp $ */ +/* $OpenBSD: cpu.h,v 1.136 2021/07/24 08:21:13 visa Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -228,7 +228,6 @@ extern struct cpu_info *get_cpu_info(int); #define CPU_IS_RUNNING(ci) ((ci)->ci_flags & CPUF_RUNNING) #define cpu_number() (curcpu()->ci_cpuid) -extern struct cpuset cpus_running; void cpu_unidle(struct cpu_info *); void cpu_boot_secondary_processors(void); #define cpu_boot_secondary(ci) hw_cpu_boot_secondary(ci) |