summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/dbexec.c
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2004-03-18 17:42:14 +0000
committernjl <njl@FreeBSD.org>2004-03-18 17:42:14 +0000
commit61c302fc074304c548f2de409a49f0c6c9564470 (patch)
treec3d67f348307b618a7d26de7d74397f4eb6d7a53 /sys/contrib/dev/acpica/dbexec.c
parentd4d5fa01f81a58ab630067ec21e8a10390ff6c28 (diff)
downloadFreeBSD-src-61c302fc074304c548f2de409a49f0c6c9564470.zip
FreeBSD-src-61c302fc074304c548f2de409a49f0c6c9564470.tar.gz
Import of Intel ACPI-CA 20040311.
Diffstat (limited to 'sys/contrib/dev/acpica/dbexec.c')
-rw-r--r--sys/contrib/dev/acpica/dbexec.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/contrib/dev/acpica/dbexec.c b/sys/contrib/dev/acpica/dbexec.c
index 5397ef4..9eded34 100644
--- a/sys/contrib/dev/acpica/dbexec.c
+++ b/sys/contrib/dev/acpica/dbexec.c
@@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dbexec - debugger control method execution
- * $Revision: 57 $
+ * $Revision: 59 $
*
******************************************************************************/
@@ -474,12 +474,14 @@ AcpiDbMethodThread (
#endif
Status = AcpiDbExecuteMethod (Info, &ReturnObj);
-
if (ACPI_FAILURE (Status))
{
AcpiOsPrintf ("%s During execution of %s at iteration %X\n",
AcpiFormatException (Status), Info->Pathname, i);
- break;
+ if (Status == AE_ABORT_METHOD)
+ {
+ break;
+ }
}
if ((i % 1000) == 0)
OpenPOWER on IntegriCloud