diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-10-24 15:40:04 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-10-24 15:40:04 +0000 |
commit | 555d994b2495e1f479b843b362be40d8e4b093c5 (patch) | |
tree | 204f4e0d713f95b594d48589a872ba10615b41fc /sys/arch/mips64/include | |
parent | 45a1c7c63149bd25222da561e7da3774e32cde02 (diff) |
Move build_trampoline() and setregs() to a common location for all mips ports.
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r-- | sys/arch/mips64/include/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mips64/include/cpu.h b/sys/arch/mips64/include/cpu.h index 4bd8438cdd1..a7843f21435 100644 --- a/sys/arch/mips64/include/cpu.h +++ b/sys/arch/mips64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.67 2010/10/02 20:49:22 syuu Exp $ */ +/* $OpenBSD: cpu.h,v 1.68 2010/10/24 15:40:03 miod Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -603,6 +603,7 @@ void tlb_write_indexed(int, struct tlb_entry *); int tlb_update(vaddr_t, unsigned); void tlb_read(int, struct tlb_entry *); +void build_trampoline(vaddr_t, vaddr_t); void savectx(struct user *, int); void enable_fpu(struct proc *); |