diff options
author | Takuya ASADA <syuu@cvs.openbsd.org> | 2009-10-30 08:13:58 +0000 |
---|---|---|
committer | Takuya ASADA <syuu@cvs.openbsd.org> | 2009-10-30 08:13:58 +0000 |
commit | 7b2ee8a540c68bc249a4734323bb044e004e7bd0 (patch) | |
tree | 0254ef28bec4f8b9a50f9d123bb7907e7e80d12d /sys/arch/mips64/include/cpu.h | |
parent | 95686a4205e4b4f0e746d26a3ad510beaa475f29 (diff) |
Support IP30 secondary cpu bootup. ok miod@
Diffstat (limited to 'sys/arch/mips64/include/cpu.h')
-rw-r--r-- | sys/arch/mips64/include/cpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mips64/include/cpu.h b/sys/arch/mips64/include/cpu.h index a1eb25d6591..25c16aee8c5 100644 --- a/sys/arch/mips64/include/cpu.h +++ b/sys/arch/mips64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.41 2009/10/22 22:08:52 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.42 2009/10/30 08:13:57 syuu Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -403,6 +403,8 @@ extern struct cpuset cpus_running; extern struct cpu_info *cpu_info[]; void cpu_unidle(struct cpu_info *); void cpu_boot_secondary_processors(void); +#define cpu_boot_secondary(ci) hw_cpu_boot_secondary(ci) +#define cpu_hatch(ci) hw_cpu_hatch(ci) #include <sys/mplock.h> #else |