diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-10-03 19:47:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-10-03 19:47:26 +0000 |
commit | c9bf6a6b57e48177a91b3e065f6745a671922e83 (patch) | |
tree | 3ea2b4e87dbf2b8822655bd3427bfc5b1129850c /sys/arch/luna88k/include/locore.h | |
parent | 993d3f3c0a5ac3473112bcea66ff12b5ce3140ec (diff) |
Merge locore_c_routines.c into machdep.c, and clear <machine/locore.h> as
done on mvme88k. <machine/locore.h> is about to die very soon...
Diffstat (limited to 'sys/arch/luna88k/include/locore.h')
-rw-r--r-- | sys/arch/luna88k/include/locore.h | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/sys/arch/luna88k/include/locore.h b/sys/arch/luna88k/include/locore.h index d900fa3ab5f..9ec874e4961 100644 --- a/sys/arch/luna88k/include/locore.h +++ b/sys/arch/luna88k/include/locore.h @@ -1,10 +1,8 @@ -/* $OpenBSD: locore.h,v 1.3 2004/08/01 17:18:02 miod Exp $ */ +/* $OpenBSD: locore.h,v 1.4 2004/10/03 19:47:25 miod Exp $ */ #ifndef _MACHINE_LOCORE_H_ #define _MACHINE_LOCORE_H_ -#include <uvm/uvm_param.h> - /* * C prototypes for various routines defined in locore_* and friends */ @@ -17,44 +15,16 @@ int badaddr(vaddr_t addr, int size); void set_cpu_number(unsigned number); void doboot(void); -int guarded_access(unsigned char *volatile address, - unsigned len, u_char *vec); - /* locore_c_routines.c */ unsigned getipl(void); -/* machdep.c */ - -void _doboot(void); -vaddr_t get_slave_stack(void); -void slave_pre_main(void); -int slave_main(void); -int intr_findvec(int start, int end); -void bugsyscall(void); -void myetheraddr(u_char *cp); -void dosoftint(void); -void luna88k_bootstrap(void); -void luna88k_ext_int(u_int v, struct trapframe *eframe); -unsigned int safe_level(unsigned mask, unsigned curlevel); - /* eh.S */ -struct proc; -void proc_do_uret(struct proc *); void sigsys(void); void sigtrap(void); void stepbpt(void); void userbpt(void); void syscall_handler(void); -void m88110_sigsys(void); -void m88110_sigtrap(void); -void m88110_stepbpt(void); -void m88110_userbpt(void); -void m88110_syscall_handler(void); - -/* process.S */ -void savectx(struct pcb *); -void switch_exit(struct proc *); #endif /* _MACHINE_LOCORE_H_ */ |