mirror of
https://github.com/acpica/acpica/
synced 2025-01-16 22:39:17 +03:00
Now only one namespace table size
Removed all ASM and LST file output date 99.05.20.23.18.00; author rmoore1; state Exp;
This commit is contained in:
parent
464de79af6
commit
317e568341
@ -161,16 +161,6 @@ NsPushCurrentScope (nte *NewScope, NsType Type)
|
||||
CurrentScope++;
|
||||
CurrentScope->Scope = NewScope;
|
||||
CurrentScope->Type = Type;
|
||||
|
||||
if (CurrentScope->Scope == RootObject->Scope)
|
||||
{
|
||||
NsCurrentSize = NsRootSize;
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
NsCurrentSize = NS_DEFAULT_TABLE_SIZE;
|
||||
}
|
||||
}
|
||||
|
||||
else
|
||||
@ -267,19 +257,8 @@ NsPopCurrent (NsType Type)
|
||||
while (CurrentScope > &ScopeStack[0])
|
||||
{
|
||||
CurrentScope--;
|
||||
|
||||
if (RootObject->Scope == CurrentScope->Scope)
|
||||
{
|
||||
NsCurrentSize = NsRootSize;
|
||||
}
|
||||
else
|
||||
{
|
||||
NsCurrentSize = NS_DEFAULT_TABLE_SIZE;
|
||||
}
|
||||
|
||||
Count++;
|
||||
|
||||
|
||||
DEBUG_PRINT (TRACE_EXEC, ("Popped %d\n", (CurrentScope+1)->Type));
|
||||
|
||||
if ((TYPE_Any == Type) || (Type == (CurrentScope + 1)->Type))
|
||||
|
Loading…
Reference in New Issue
Block a user