summaryrefslogtreecommitdiff
path: root/source/include/acinterp.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/acinterp.h')
-rw-r--r--source/include/acinterp.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/include/acinterp.h b/source/include/acinterp.h
index 59ade0272cb7..bcb306cff53e 100644
--- a/source/include/acinterp.h
+++ b/source/include/acinterp.h
@@ -45,6 +45,8 @@
#define __ACINTERP_H__
+#pragma pack(push) /* Set default struct packing */
+
#define ACPI_WALK_OPERANDS (&(WalkState->Operands [WalkState->NumOperands -1]))
/* Macros for tables used for debug output */
@@ -89,6 +91,10 @@ typedef const struct acpi_exdump_info
#define ACPI_EXD_PACKAGE 11
#define ACPI_EXD_FIELD 12
#define ACPI_EXD_REFERENCE 13
+#define ACPI_EXD_LIST 14 /* Operand object list */
+#define ACPI_EXD_HDLR_LIST 15 /* Address Handler list */
+#define ACPI_EXD_RGN_LIST 16 /* Region list */
+#define ACPI_EXD_NODE 17 /* Namespace Node */
/* restore default alignment */
@@ -612,14 +618,6 @@ void
AcpiExExitInterpreter (
void);
-void
-AcpiExReacquireInterpreter (
- void);
-
-void
-AcpiExRelinquishInterpreter (
- void);
-
BOOLEAN
AcpiExTruncateFor32bitTable (
ACPI_OPERAND_OBJECT *ObjDesc);
@@ -723,4 +721,6 @@ AcpiExDataTableSpaceHandler (
void *HandlerContext,
void *RegionContext);
+#pragma pack(pop) /* Restore original struct packing */
+
#endif /* __INTERP_H__ */