diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-12 23:00:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-03-12 23:00:49 +0000 |
commit | 756387b20009fe5d64a6b969926a658587d88b2b (patch) | |
tree | 9fb9e5ed1ecbdd95e30e07b381b72f6f751663a1 /sys | |
parent | 1f9163f74c9b6ddd9a3adf54346c34ddf8819bc0 (diff) |
Remove dead code related to soft interrupts.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/include/trap.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/mvme88k/include/trap.h b/sys/arch/mvme88k/include/trap.h index bc0aeba3e71..236a7be4062 100644 --- a/sys/arch/mvme88k/include/trap.h +++ b/sys/arch/mvme88k/include/trap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.h,v 1.8 2001/03/09 05:44:40 smurph Exp $ */ +/* $OpenBSD: trap.h,v 1.9 2001/03/12 23:00:48 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1992 Carnegie Mellon University @@ -72,15 +72,13 @@ #define T_INT 28 /* interrupt exception */ #define T_USER 29 /* user mode fault */ -#ifndef ASSEMBLER +#ifndef _LOCORE void panictrap(int type, struct m88100_saved_state *frame); void test_trap2(int num, int m197); void test_trap(struct m88100_saved_state *frame); void error_fault(struct m88100_saved_state *frame); void error_reset(struct m88100_saved_state *frame); void child_return(struct proc *p); -u_long allocate_sir(void (*proc)(), void *arg); -void init_sir(); unsigned ss_get_value(struct proc *p, unsigned addr, int size); int ss_put_value(struct proc *p, unsigned addr, unsigned value, int size); unsigned ss_branch_taken(unsigned inst, unsigned pc, @@ -101,7 +99,7 @@ void syscall(register_t code, struct m88100_saved_state *tf); void trap2(unsigned type, struct m88100_saved_state *frame); void m197_syscall(register_t code, struct m88100_saved_state *tf); #endif /* MVME197 */ -#endif /* ASSEMBLER */ +#endif /* _LOCORE */ #endif __MACHINE_TRAP_H__ |