diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-26 17:45:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-26 17:45:01 +0000 |
commit | 0e3a9139c642807a4d6079d4d7f476d59208ae81 (patch) | |
tree | 4e73d82a24e3335383d80c5790378dc2960ea3bb /sys | |
parent | aadfb5ff45607b6779d8f7a609e784c5ed0d3c5d (diff) |
do not panic if spl is wrong, for now; millert & art agree
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/locore.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index 86f03e2fe27..d1d21d7b44a 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.56 2001/05/17 00:18:19 fgsch Exp $ */ +/* $OpenBSD: locore.s,v 1.57 2001/08/26 17:45:00 deraadt Exp $ */ /* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */ /*- @@ -2063,7 +2063,7 @@ calltrap: pushl $4f call _printf addl $4,%esp -#ifdef DDB +#if defined(DDB) && 0 int $3 #endif /* DDB */ movl %ebx,_cpl @@ -2118,7 +2118,7 @@ syscall1: pushl $4f call _printf addl $4,%esp -#ifdef DDB +#if defined(DDB) && 0 int $3 #endif /* DDB */ movl %ebx,_cpl |