diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-02-03 23:32:23 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-02-03 23:32:23 +0000 |
commit | cbcfa9770522f11ff1d018373c52069cfac5aee0 (patch) | |
tree | 1d0f437fad9ecf6284eb14db500564ed194d7b6b | |
parent | a16e39ea9bff955a86cc503b8904d6a70c206871 (diff) |
remove DDB hack
-rw-r--r-- | sys/arch/sun3/sun3/trap.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sun3/sun3/trap.c b/sys/arch/sun3/sun3/trap.c index 5cf49706448..cd8d44bb1eb 100644 --- a/sys/arch/sun3/sun3/trap.c +++ b/sys/arch/sun3/sun3/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.11 1997/02/03 21:46:17 kstailey Exp $ */ +/* $OpenBSD: trap.c,v 1.12 1997/02/03 23:32:22 kstailey Exp $ */ /* $NetBSD: trap.c,v 1.63-1.65ish 1997/01/16 15:41:40 gwr Exp $ */ /* @@ -429,11 +429,6 @@ trap(type, code, v, frame) goto douret; case T_MMUFLT: /* kernel mode page fault */ -#ifdef DDB - /* Hack to avoid calling VM code from DDB. */ - if (db_recover != 0) - goto dopanic; -#endif /* * If we were doing profiling ticks or other user mode * stuff from interrupt code, Just Say No. |