diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-07 00:59:17 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-12-07 00:59:17 +0000 |
commit | 9da10073afacd90f01d9cee1811c6f3c35bd99b5 (patch) | |
tree | 064a979759ac9d4c757a2e9afc0a7bc9e85be868 /sys/arch/amiga | |
parent | 3920e4a2c7f638130fcc7929be1586b1e61cb8c1 (diff) |
Ratibibugle setredzone()
[Ratibibugle is local slang for g/c, remove, rototill, etc]
Diffstat (limited to 'sys/arch/amiga')
-rw-r--r-- | sys/arch/amiga/amiga/vm_machdep.c | 21 | ||||
-rw-r--r-- | sys/arch/amiga/include/cpu.h | 3 |
2 files changed, 2 insertions, 22 deletions
diff --git a/sys/arch/amiga/amiga/vm_machdep.c b/sys/arch/amiga/amiga/vm_machdep.c index b1e15b10fe9..007291f885c 100644 --- a/sys/arch/amiga/amiga/vm_machdep.c +++ b/sys/arch/amiga/amiga/vm_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_machdep.c,v 1.27 2001/11/30 22:38:22 miod Exp $ */ +/* $OpenBSD: vm_machdep.c,v 1.28 2001/12/07 00:59:13 miod Exp $ */ /* $NetBSD: vm_machdep.c,v 1.30 1997/05/19 10:14:50 veego Exp $ */ /* @@ -285,25 +285,6 @@ cpu_coredump(p, vp, cred, chdr) } /* - * Set a red zone in the kernel stack after the u. area. - * We don't support a redzone right now. It really isn't clear - * that it is a good idea since, if the kernel stack were to roll - * into a write protected page, the processor would lock up (since - * it cannot create an exception frame) and we would get no useful - * post-mortem info. Currently, under the DEBUG option, we just - * check at every clock interrupt to see if the current k-stack has - * gone too far (i.e. into the "redzone" page) and if so, panic. - * Look at _lev6intr in locore.s for more details. - */ -/*ARGSUSED*/ -void -setredzone(pte, vaddr) - u_int *pte; - caddr_t vaddr; -{ -} - -/* * Convert kernel VA to physical address */ int diff --git a/sys/arch/amiga/include/cpu.h b/sys/arch/amiga/include/cpu.h index ad4422a41f4..1e711202f62 100644 --- a/sys/arch/amiga/include/cpu.h +++ b/sys/arch/amiga/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.15 2001/11/30 23:20:09 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.16 2001/12/07 00:59:16 miod Exp $ */ /* $NetBSD: cpu.h,v 1.36 1996/09/11 00:11:42 thorpej Exp $ */ /* @@ -233,7 +233,6 @@ int dma_cachectl __P((caddr_t, int)); int kvtop __P((caddr_t)); void physaccess __P((caddr_t, caddr_t, int, int)); void physunaccess __P((caddr_t, int)); -void setredzone __P((u_int *, caddr_t)); #ifdef GENERIC /* |