diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2016-09-30 19:46:13 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2016-09-30 19:46:13 +0000 |
| commit | 7600ac2283596bd000a29b9347e95346d3b740d7 (patch) | |
| tree | 71816608dca5b2fd7445b5bd4cba161b0b293fe1 /source/include/acpixf.h | |
| parent | be99e84498e91a5930864ef7b92b1a7ceb815e44 (diff) | |
Import ACPICA 20160930.vendor/acpica/20160930
Notes
svn path=/vendor-sys/acpica/dist/; revision=306523
svn path=/vendor-sys/acpica/20160930/; revision=306524; tag=vendor/acpica/20160930
Diffstat (limited to 'source/include/acpixf.h')
| -rw-r--r-- | source/include/acpixf.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source/include/acpixf.h b/source/include/acpixf.h index 17bab19baad4..b2655e96fd99 100644 --- a/source/include/acpixf.h +++ b/source/include/acpixf.h @@ -46,7 +46,7 @@ /* Current ACPICA subsystem version in YYYYMMDD format */ -#define ACPI_CA_VERSION 0x20160831 +#define ACPI_CA_VERSION 0x20160930 #include "acconfig.h" #include "actypes.h" @@ -261,6 +261,13 @@ ACPI_INIT_GLOBAL (UINT8, AcpiGbl_OsiData, 0); ACPI_INIT_GLOBAL (BOOLEAN, AcpiGbl_ReducedHardware, FALSE); /* + * Maximum number of While() loop iterations before forced method abort. + * This mechanism is intended to prevent infinite loops during interpreter + * execution within a host kernel. + */ +ACPI_INIT_GLOBAL (UINT32, AcpiGbl_MaxLoopIterations, ACPI_MAX_LOOP_COUNT); + +/* * This mechanism is used to trace a specified AML method. The method is * traced each time it is executed. */ |
