diff options
author | 2010-06-03 15:05:52 +0000 | |
---|---|---|
committer | 2010-06-03 15:05:52 +0000 | |
commit | 99896267ac61bf8b37bba300cba8086c06e31f87 (patch) | |
tree | 1163330d88728cc57eaa675ee5bc19434a7be419 | |
parent | massage the code to avoid races in ami_mgmt. (diff) | |
download | wireguard-openbsd-99896267ac61bf8b37bba300cba8086c06e31f87.tar.xz wireguard-openbsd-99896267ac61bf8b37bba300cba8086c06e31f87.zip |
Add missing function prototypes for MP kernels.
-rw-r--r-- | sys/arch/hppa/include/cpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/cpu.h b/sys/arch/hppa/include/cpu.h index 315478cc5b2..a7b842a0373 100644 --- a/sys/arch/hppa/include/cpu.h +++ b/sys/arch/hppa/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.72 2010/05/21 15:24:29 jsing Exp $ */ +/* $OpenBSD: cpu.h,v 1.73 2010/06/03 15:05:52 jsing Exp $ */ /* * Copyright (c) 2000-2004 Michael Shalayeff @@ -234,6 +234,8 @@ int cpu_dump(void); #ifdef MULTIPROCESSOR void cpu_boot_secondary_processors(void); +void cpu_hw_init(void); +void cpu_hatch(void); #endif #endif |