acconfig.h (7c478bd9) acconfig.h (450d6964)
1/******************************************************************************
2 *
3 * Name: acconfig.h - Global configuration constants
1/******************************************************************************
2 *
3 * Name: acconfig.h - Global configuration constants
4 * $Revision: 183 $
4 * $Revision: 189 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp.

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

132 *
133 * ACPI_APPLICATION - Use this switch if the subsystem is going to be run
134 * at the application level.
135 *
136 */
137
138/* Version string */
139
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp.

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

132 *
133 * ACPI_APPLICATION - Use this switch if the subsystem is going to be run
134 * at the application level.
135 *
136 */
137
138/* Version string */
139
140#define ACPI_CA_VERSION 0x20050408
140#define ACPI_CA_VERSION 0x20050708
141
142/*
143 * OS name, used for the _OS object. The _OS object is essentially obsolete,
144 * but there is a large base of ASL/AML code in existing machines that check
145 * for the string below. The use of this string usually guarantees that
146 * the ASL will execute down the most tested code path. Also, there is some
147 * code that will not execute the _OSI method unless _OS matches the string
148 * below. Therefore, change this string at your own risk.
149 */
150#define ACPI_OS_NAME "Microsoft Windows NT"
151
152/* Maximum objects in the various object caches */
153
141
142/*
143 * OS name, used for the _OS object. The _OS object is essentially obsolete,
144 * but there is a large base of ASL/AML code in existing machines that check
145 * for the string below. The use of this string usually guarantees that
146 * the ASL will execute down the most tested code path. Also, there is some
147 * code that will not execute the _OSI method unless _OS matches the string
148 * below. Therefore, change this string at your own risk.
149 */
150#define ACPI_OS_NAME "Microsoft Windows NT"
151
152/* Maximum objects in the various object caches */
153
154#define ACPI_MAX_STATE_CACHE_DEPTH 64 /* State objects */
154#define ACPI_MAX_STATE_CACHE_DEPTH 96 /* State objects */
155#define ACPI_MAX_PARSE_CACHE_DEPTH 96 /* Parse tree objects */
155#define ACPI_MAX_PARSE_CACHE_DEPTH 96 /* Parse tree objects */
156#define ACPI_MAX_EXTPARSE_CACHE_DEPTH 64 /* Parse tree objects */
157#define ACPI_MAX_OBJECT_CACHE_DEPTH 64 /* Interpreter operand objects */
158#define ACPI_MAX_WALK_CACHE_DEPTH 4 /* Objects for parse tree walks */
156#define ACPI_MAX_EXTPARSE_CACHE_DEPTH 96 /* Parse tree objects */
157#define ACPI_MAX_OBJECT_CACHE_DEPTH 96 /* Interpreter operand objects */
159
160/*
161 * Should the subystem abort the loading of an ACPI table if the
162 * table checksum is incorrect?
163 */
164#define ACPI_CHECKSUM_ABORT FALSE
165
166

--- 123 unchanged lines hidden ---
158
159/*
160 * Should the subystem abort the loading of an ACPI table if the
161 * table checksum is incorrect?
162 */
163#define ACPI_CHECKSUM_ABORT FALSE
164
165

--- 123 unchanged lines hidden ---