summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-01-30 18:23:31 +0000
committerbde <bde@FreeBSD.org>2002-01-30 18:23:31 +0000
commit83b7c4d30a3f9613ef1f324e0184f7eb121b9139 (patch)
tree432dcbd686809149cac688e23fcb7e4d44a5c304 /sys/i386
parent5909c8df4dc4ada0325629a022f8cb2fb883488e (diff)
downloadFreeBSD-src-83b7c4d30a3f9613ef1f324e0184f7eb121b9139.zip
FreeBSD-src-83b7c4d30a3f9613ef1f324e0184f7eb121b9139.tar.gz
Backed out the last vestiges of rev.1.51. Don't enter a critical
region in Debugger(), since rev.1.468 of machdep.c does this better. Other cosmetic backouts.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/db_interface.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/i386/i386/db_interface.c b/sys/i386/i386/db_interface.c
index 000085b..bb5a5b1 100644
--- a/sys/i386/i386/db_interface.c
+++ b/sys/i386/i386/db_interface.c
@@ -33,9 +33,6 @@
#include <sys/systm.h>
#include <sys/reboot.h>
#include <sys/cons.h>
-#include <sys/ktr.h>
-#include <sys/linker_set.h>
-#include <sys/lock.h>
#include <sys/pcpu.h>
#include <sys/proc.h>
#include <sys/smp.h>
@@ -49,9 +46,6 @@
#include <vm/pmap.h>
#include <ddb/ddb.h>
-#include <ddb/db_access.h>
-#include <ddb/db_sym.h>
-#include <ddb/db_variables.h>
#include <machine/setjmp.h>
@@ -311,8 +305,7 @@ void
Debugger(msg)
const char *msg;
{
- static volatile u_int in_Debugger;
- critical_t savecrit;
+ static volatile u_int in_Debugger;
/*
* XXX
@@ -324,10 +317,8 @@ Debugger(msg)
return;
if (atomic_cmpset_acq_int(&in_Debugger, 0, 1)) {
- savecrit = cpu_critical_enter();
db_printf("Debugger(\"%s\")\n", msg);
breakpoint();
- cpu_critical_exit(savecrit);
atomic_store_rel_int(&in_Debugger, 0);
}
}
OpenPOWER on IntegriCloud