diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-03 14:30:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-03 14:30:07 +0000 |
commit | adafd44db90a04c4df796b4e345001a39a835287 (patch) | |
tree | afd1335287af4838d4497cf55be1c065f245442c /sys/arch/luna88k/include | |
parent | 5652cf70d1907362b0d7f661c5edbbf19e021b8e (diff) |
Switch m88k ports to __HAVE_CPUINFO. Current cpu pointer is held in SR0
on all running processors.
Tested aoyama@ and I
Diffstat (limited to 'sys/arch/luna88k/include')
-rw-r--r-- | sys/arch/luna88k/include/locore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/luna88k/include/locore.h b/sys/arch/luna88k/include/locore.h index f31fd89595b..eeaacb50714 100644 --- a/sys/arch/luna88k/include/locore.h +++ b/sys/arch/luna88k/include/locore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.h,v 1.5 2005/04/27 14:09:45 miod Exp $ */ +/* $OpenBSD: locore.h,v 1.6 2005/12/03 14:30:02 miod Exp $ */ #ifndef _MACHINE_LOCORE_H_ #define _MACHINE_LOCORE_H_ @@ -12,12 +12,12 @@ unsigned read_processor_identification_register(void); int badaddr(vaddr_t addr, int size); #define badwordaddr(x) badaddr(x, 4) -void set_cpu_number(unsigned number); void doboot(void); -/* locore_c_routines.c */ +/* machdep.c */ unsigned getipl(void); +void set_cpu_number(cpuid_t); /* eh.S */ |