mirror of
https://github.com/acpica/acpica/
synced 2025-02-16 05:24:36 +03:00
Moved structure to aclocals.h
date 2001.05.29.16.46.00; author rmoore1; state Exp;
This commit is contained in:
parent
c724bb6db7
commit
8b7c4407e0
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user