mirror of
https://github.com/acpica/acpica/
synced 2025-03-15 02:32:52 +03:00
Check for error after attempting to enter interpreter
date 2001.03.02.22.48.00; author rmoore1; state Exp;
This commit is contained in:
parent
2aaff58c4d
commit
6313fef8bc
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user