From df378257060253bca0d4ce4b8b41f8fc64002393 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 19:45:55 +0000 Subject: [PATCH] Save/restore the original thread SyncLevel. SyncLevel is 8 bits (0-15) date 2004.04.07.19.20.00; author rmoore1; state Exp; --- source/include/aclocal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/include/aclocal.h b/source/include/aclocal.h index 439bda735..738dd324e 100644 --- a/source/include/aclocal.h +++ b/source/include/aclocal.h @@ -1,7 +1,7 @@ /****************************************************************************** * * Name: aclocal.h - Internal data types used across the ACPI subsystem - * $Revision: 1.199 $ + * $Revision: 1.200 $ * *****************************************************************************/ @@ -598,7 +598,7 @@ typedef struct acpi_thread_state struct acpi_walk_state *WalkStateList; /* Head of list of WalkStates for this thread */ union acpi_operand_object *AcquiredMutexList; /* List of all currently acquired mutexes */ UINT32 ThreadId; /* Running thread ID */ - UINT16 CurrentSyncLevel; /* Mutex Sync (nested acquire) level */ + UINT8 CurrentSyncLevel; /* Mutex Sync (nested acquire) level */ } ACPI_THREAD_STATE;