Changed BUFFER_SIZE name

date	2001.08.24.20.20.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:28:54 +00:00
parent a9ed5ec673
commit 9a905b39b4

View File

@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dbxface - AML Debugger external interfaces
* $Revision: 1.36 $
* $Revision: 1.40 $
*
******************************************************************************/
@ -210,12 +210,12 @@ AcpiDbSingleStep (
* Under certain debug conditions, display this opcode and its operands
*/
if ((OutputToFile) ||
if ((AcpiGbl_DbOutputToFile) ||
(AcpiGbl_CmSingleStep) ||
(AcpiDbgLevel & TRACE_PARSE))
(AcpiDbgLevel & ACPI_LV_PARSE))
{
if ((OutputToFile) ||
(AcpiDbgLevel & TRACE_PARSE))
if ((AcpiGbl_DbOutputToFile) ||
(AcpiDbgLevel & ACPI_LV_PARSE))
{
AcpiOsPrintf ("\n[AmlDebug] Next AML Opcode to execute:\n");
}
@ -227,7 +227,7 @@ AcpiDbSingleStep (
*/
OriginalDebugLevel = AcpiDbgLevel;
AcpiDbgLevel &= ~(TRACE_PARSE | TRACE_FUNCTIONS);
AcpiDbgLevel &= ~(ACPI_LV_PARSE | ACPI_LV_FUNCTIONS);
Next = Op->Next;
Op->Next = NULL;
@ -320,7 +320,7 @@ AcpiDbSingleStep (
/* TBD: [Investigate] what are the namespace locking issues here */
/* AcpiCmReleaseMutex (ACPI_MTX_NAMESPACE); */
/* AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE); */
/* Go into the command loop and await next user command */
@ -332,8 +332,8 @@ AcpiDbSingleStep (
{
/* Handshake with the front-end that gets user command lines */
AcpiCmReleaseMutex (ACPI_MTX_DEBUG_CMD_COMPLETE);
AcpiCmAcquireMutex (ACPI_MTX_DEBUG_CMD_READY);
AcpiUtReleaseMutex (ACPI_MTX_DEBUG_CMD_COMPLETE);
AcpiUtAcquireMutex (ACPI_MTX_DEBUG_CMD_READY);
}
else
@ -357,13 +357,13 @@ AcpiDbSingleStep (
/* Get the user input line */
AcpiOsGetLine (LineBuf);
AcpiOsGetLine (AcpiGbl_DbLineBuf);
}
Status = AcpiDbCommandDispatch (LineBuf, WalkState, Op);
Status = AcpiDbCommandDispatch (AcpiGbl_DbLineBuf, WalkState, Op);
}
/* AcpiCmAcquireMutex (ACPI_MTX_NAMESPACE); */
/* AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE); */
/* User commands complete, continue execution of the interrupted method */
@ -391,12 +391,12 @@ AcpiDbInitialize (void)
/* Init globals */
Buffer = AcpiOsAllocate (BUFFER_SIZE);
AcpiGbl_DbBuffer = AcpiOsAllocate (ACPI_DEBUG_BUFFER_SIZE);
/* Initial scope is the root */
ScopeBuf [0] = '\\';
ScopeBuf [1] = 0;
AcpiGbl_DbScopeBuf [0] = '\\';
AcpiGbl_DbScopeBuf [1] = 0;
/*
@ -409,19 +409,19 @@ AcpiDbInitialize (void)
{
/* These were created with one unit, grab it */
AcpiCmAcquireMutex (ACPI_MTX_DEBUG_CMD_COMPLETE);
AcpiCmAcquireMutex (ACPI_MTX_DEBUG_CMD_READY);
AcpiUtAcquireMutex (ACPI_MTX_DEBUG_CMD_COMPLETE);
AcpiUtAcquireMutex (ACPI_MTX_DEBUG_CMD_READY);
/* Create the debug execution thread to execute commands */
AcpiOsQueueForExecution (0, AcpiDbExecuteThread, NULL);
}
if (!opt_verbose)
if (!AcpiGbl_DbOpt_verbose)
{
INDENT_STRING = " ";
opt_disasm = TRUE;
opt_stats = FALSE;
AcpiGbl_DbDisasmIndent = " ";
AcpiGbl_DbOpt_disasm = TRUE;
AcpiGbl_DbOpt_stats = FALSE;
}