Deleted Added
sdiff udiff text old ( 84491 ) new ( 87031 )
full compact
1/******************************************************************************
2 *
3 * Module Name: psscope - Parser scope stack management routines
4 * $Revision: 30 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp.

--- 221 unchanged lines hidden (view full) ---

234
235
236 FUNCTION_TRACE_PTR ("PsPushScope", Op);
237
238
239 Scope = AcpiUtCreateGenericState ();
240 if (!Scope)
241 {
242 return (AE_NO_MEMORY);
243 }
244
245
246 Scope->Common.DataType = ACPI_DESC_TYPE_STATE_PSCOPE;
247 Scope->ParseScope.Op = Op;
248 Scope->ParseScope.ArgList = RemainingArgs;
249 Scope->ParseScope.ArgCount = ArgCount;
250 Scope->ParseScope.PkgEnd = ParserState->PkgEnd;

--- 126 unchanged lines hidden ---