Check for error after attempting to enter interpreter

date	2001.03.02.22.48.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:47:10 +00:00
parent 2aaff58c4d
commit 6313fef8bc

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: evxface - External interfaces for ACPI events
* $Revision: 1.102 $
* $Revision: 1.103 $
*
*****************************************************************************/
@ -731,7 +731,11 @@ AcpiAcquireGlobalLock (
ACPI_STATUS Status;
AcpiAmlEnterInterpreter ();
Status = AcpiAmlEnterInterpreter ();
if (ACPI_FAILURE (Status))
{
return (Status);
}
/*
* TBD: [Restructure] add timeout param to internal interface, and