Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 264 of file psxface.c.
Referenced by AcpiPsExecuteMethod().
{ ACPI_STATUS Status; ACPI_FUNCTION_ENTRY (); Status = AcpiUtAcquireMutex (ACPI_MTX_NAMESPACE); if (ACPI_FAILURE (Status)) { return; } if ((!AcpiGbl_TraceMethodName) || (AcpiGbl_TraceMethodName != Info->ResolvedNode->Name.Integer)) { goto Exit; } /* Disable further tracing if type is one-shot */ if (AcpiGbl_TraceFlags & 1) { AcpiGbl_TraceMethodName = 0; AcpiGbl_TraceDbgLevel = 0; AcpiGbl_TraceDbgLayer = 0; } AcpiDbgLevel = AcpiGbl_OriginalDbgLevel; AcpiDbgLayer = AcpiGbl_OriginalDbgLayer; Exit: (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE); }