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

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

358
359 else
360 {
361 /* Display a return object, if any */
362
363 if (ReturnObj.Length)
364 {
365 AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

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

358
359 else
360 {
361 /* Display a return object, if any */
362
363 if (ReturnObj.Length)
364 {
365 AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
366 AcpiGbl_DbMethodInfo.Pathname, ReturnObj.Pointer, ReturnObj.Length);
366 AcpiGbl_DbMethodInfo.Pathname, ReturnObj.Pointer,
367 (UINT32) ReturnObj.Length);
367 AcpiDbDumpObject (ReturnObj.Pointer, 1);
368 }
369 else
370 {
371 AcpiOsPrintf ("No return object from execution of %s\n",
372 AcpiGbl_DbMethodInfo.Pathname);
373 }
374 }

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

403 for (i = 0; i < Info->NumLoops; i++)
404 {
405 Status = AcpiDbExecuteMethod (Info, &ReturnObj);
406 if (ACPI_SUCCESS (Status))
407 {
408 if (ReturnObj.Length)
409 {
410 AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
368 AcpiDbDumpObject (ReturnObj.Pointer, 1);
369 }
370 else
371 {
372 AcpiOsPrintf ("No return object from execution of %s\n",
373 AcpiGbl_DbMethodInfo.Pathname);
374 }
375 }

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

404 for (i = 0; i < Info->NumLoops; i++)
405 {
406 Status = AcpiDbExecuteMethod (Info, &ReturnObj);
407 if (ACPI_SUCCESS (Status))
408 {
409 if (ReturnObj.Length)
410 {
411 AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
411 Info->Pathname, ReturnObj.Pointer, ReturnObj.Length);
412 Info->Pathname, ReturnObj.Pointer, (UINT32) ReturnObj.Length);
412 AcpiDbDumpObject (ReturnObj.Pointer, 1);
413 }
414 }
415 }
416
417 /* Signal our completion */
418
419 Status = AcpiOsSignalSemaphore (Info->ThreadGate, 1);

--- 99 unchanged lines hidden ---
413 AcpiDbDumpObject (ReturnObj.Pointer, 1);
414 }
415 }
416 }
417
418 /* Signal our completion */
419
420 Status = AcpiOsSignalSemaphore (Info->ThreadGate, 1);

--- 99 unchanged lines hidden ---