diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 2008-10-03 21:57:26 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 2008-10-03 21:57:26 +0000 |
commit | d26316f1afc564aa108da797b09e524b2ccad40c (patch) | |
tree | c7a2bd523d57b3c96fa56f06a145b74b2d069afa /sys | |
parent | aff24f90414fd25a51d776d03fbd689999311d25 (diff) |
Backout. kettenis@ has reservations.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/amd64/db_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/db_interface.c b/sys/arch/amd64/amd64/db_interface.c index 172f5bc5e3c..36455c96a3b 100644 --- a/sys/arch/amd64/amd64/db_interface.c +++ b/sys/arch/amd64/amd64/db_interface.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_interface.c,v 1.14 2008/10/03 17:07:53 weingart Exp $ */ +/* $OpenBSD: db_interface.c,v 1.15 2008/10/03 21:57:25 weingart Exp $ */ /* $NetBSD: db_interface.c,v 1.1 2003/04/26 18:39:27 fvdl Exp $ */ /* @@ -325,7 +325,7 @@ db_enter_ddb(void) /* Busy wait without locking, we'll confirm with lock later */ while (ddb_active_cpu != cpu_number() && curcpu()->ci_ddb_paused != CI_DDB_RUNNING) - __asm __volatile ("hlt"); /* Do nothing */ + ; /* Do nothing */ mtx_enter(&ddb_mp_mutex); } |