Moved structure to aclocals.h

date	2001.05.29.16.46.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:20:27 +00:00
parent c724bb6db7
commit 8b7c4407e0

View File

@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dbexec - debugger control method execution
* $Revision: 1.24 $
* $Revision: 1.26 $
*
******************************************************************************/
@ -132,18 +132,6 @@
MODULE_NAME ("dbexec")
typedef struct dbmethodinfo
{
ACPI_HANDLE ThreadGate;
NATIVE_CHAR *Name;
NATIVE_CHAR **Args;
UINT32 Flags;
UINT32 NumLoops;
NATIVE_CHAR Pathname[128];
} DB_METHOD_INFO;
DB_METHOD_INFO Info;
@ -333,7 +321,8 @@ AcpiDbExecute (
if (ACPI_FAILURE (Status))
{
AcpiOsPrintf ("Execution of %s failed with status %s\n", Info.Pathname, AcpiCmFormatException (Status));
AcpiOsPrintf ("Execution of %s failed with status %s\n",
Info.Pathname, AcpiUtFormatException (Status));
}
else
@ -440,7 +429,7 @@ AcpiDbCreateExecutionThreads (
Status = AcpiOsCreateSemaphore (1, 0, &ThreadGate);
if (ACPI_FAILURE (Status))
{
AcpiOsPrintf ("Could not create semaphore, %s\n", AcpiCmFormatException (Status));
AcpiOsPrintf ("Could not create semaphore, %s\n", AcpiUtFormatException (Status));
return;
}