diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 1997-09-12 09:21:26 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 1997-09-12 09:21:26 +0000 |
commit | b3cec97ad7217f49b992caec4432b0c0be62da7c (patch) | |
tree | a547d9c369276f91273626533a53a53c50c088f1 /sys/arch/vax/include/cpu.h | |
parent | 330a82eb79f3450c17981e71298fc1459e26ea15 (diff) |
Sync with NetBSD 970827. -moj
Diffstat (limited to 'sys/arch/vax/include/cpu.h')
-rw-r--r-- | sys/arch/vax/include/cpu.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/vax/include/cpu.h b/sys/arch/vax/include/cpu.h index 510e8d857b3..3639ebf1e4b 100644 --- a/sys/arch/vax/include/cpu.h +++ b/sys/arch/vax/include/cpu.h @@ -1,5 +1,5 @@ -/* $OpenBSD: cpu.h,v 1.7 1997/09/10 11:47:05 maja Exp $ */ -/* $NetBSD: cpu.h,v 1.23 1997/03/15 15:09:41 ragge Exp $ */ +/* $OpenBSD: cpu.h,v 1.8 1997/09/12 09:21:19 maja Exp $ */ +/* $NetBSD: cpu.h,v 1.24 1997/07/26 10:12:40 ragge Exp $ */ /* * Copyright (c) 1994 Ludd, University of Lule}, Sweden @@ -60,6 +60,8 @@ struct cpu_dep { u_char *cpu_intclr; /* Used on some VAXstations */ u_char *cpu_intmsk; /* Used on some VAXstations */ struct uc_map *cpu_map; /* Map containing important addresses */ + void (*cpu_halt) __P((void)); /* Cpu dependent halt call */ + void (*cpu_reboot) __P((int)); /* Cpu dependent reboot call */ }; extern struct cpu_dep *dep_call; /* Holds pointer to current CPU struct. */ |