summaryrefslogtreecommitdiff
path: root/sys/arch/vax/include/cpu.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 14:00:15 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-12-14 14:00:15 +0000
commit2b3d1887ac6c72f8273969f0b739fb622d7c5c0e (patch)
treec90edaf98be0ac57bce4fdb458db3a33b29b2294 /sys/arch/vax/include/cpu.h
parentc4387b4bfda4a8a4d6c2042c6936055ac302dba8 (diff)
update from netbsd
Diffstat (limited to 'sys/arch/vax/include/cpu.h')
-rw-r--r--sys/arch/vax/include/cpu.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/vax/include/cpu.h b/sys/arch/vax/include/cpu.h
index b7cdd1855a1..12ce8363e99 100644
--- a/sys/arch/vax/include/cpu.h
+++ b/sys/arch/vax/include/cpu.h
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.h,v 1.12 1995/06/05 17:17:57 ragge Exp $ */
+/* $NetBSD: cpu.h,v 1.13 1995/12/13 18:57:57 ragge Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden
@@ -41,15 +41,16 @@
#define cpu_swapout(p)
-extern volatile int cpunumber;
+extern int cpunumber, cpu_type;
extern struct cpu_dep cpu_calls[];
struct cpu_dep {
- int (*cpu_loinit)(); /* Locore init before everything else */
+ int (*cpu_steal_pages)(); /* Pmap init before mm is on */
int (*cpu_clock)(); /* CPU dependent clock handling */
int (*cpu_mchk)(); /* Machine check handling */
int (*cpu_memerr)(); /* Memory subsystem errors */
int (*cpu_conf)(); /* Autoconfiguration */
+/* int (*cpu_cmrerr)(); /* Memory parity errors */
};
struct clockframe {