Deleted Added
full compact
dbexec.c (126372) dbexec.c (127175)
1/*******************************************************************************
2 *
3 * Module Name: dbexec - debugger control method execution
1/*******************************************************************************
2 *
3 * Module Name: dbexec - debugger control method execution
4 * $Revision: 57 $
4 * $Revision: 59 $
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

--- 456 unchanged lines hidden (view full) ---

469#if 0
470 if (i == 0xEFDC)
471 {
472 AcpiDbgLevel = 0x00FFFFFF;
473 }
474#endif
475
476 Status = AcpiDbExecuteMethod (Info, &ReturnObj);
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

--- 456 unchanged lines hidden (view full) ---

469#if 0
470 if (i == 0xEFDC)
471 {
472 AcpiDbgLevel = 0x00FFFFFF;
473 }
474#endif
475
476 Status = AcpiDbExecuteMethod (Info, &ReturnObj);
477
478 if (ACPI_FAILURE (Status))
479 {
480 AcpiOsPrintf ("%s During execution of %s at iteration %X\n",
481 AcpiFormatException (Status), Info->Pathname, i);
477 if (ACPI_FAILURE (Status))
478 {
479 AcpiOsPrintf ("%s During execution of %s at iteration %X\n",
480 AcpiFormatException (Status), Info->Pathname, i);
482 break;
481 if (Status == AE_ABORT_METHOD)
482 {
483 break;
484 }
483 }
484
485 if ((i % 1000) == 0)
486 {
487 AcpiOsPrintf ("%d executions\n", i);
488 }
489
490#if 0

--- 111 unchanged lines hidden ---
485 }
486
487 if ((i % 1000) == 0)
488 {
489 AcpiOsPrintf ("%d executions\n", i);
490 }
491
492#if 0

--- 111 unchanged lines hidden ---