Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 2215 → Rev 2216

/drivers/devman/acpica/include/platform/acenv.h
8,7 → 8,7
*
* 1. Copyright Notice
*
* Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
* Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
* All rights reserved.
*
* 2. License
148,9 → 148,10
#define ACPI_CONSTANT_EVAL_ONLY
#define ACPI_LARGE_NAMESPACE_NODE
#define ACPI_DATA_TABLE_DISASSEMBLY
#define ACPI_SINGLE_THREADED
#endif
 
/* AcpiExec configuration */
/* AcpiExec configuration. Multithreaded with full AML debugger */
 
#ifdef ACPI_EXEC_APP
#define ACPI_APPLICATION
159,6 → 160,30
#define ACPI_DBG_TRACK_ALLOCATIONS
#endif
 
/* AcpiNames configuration. Single threaded with debugger output enabled. */
 
#ifdef ACPI_NAMES_APP
#define ACPI_DEBUGGER
#define ACPI_APPLICATION
#define ACPI_SINGLE_THREADED
#endif
 
/*
* AcpiBin/AcpiHelp/AcpiSrc configuration. All single threaded, with
* no debug output.
*/
#if (defined ACPI_BIN_APP) || \
(defined ACPI_SRC_APP)
#define ACPI_APPLICATION
#define ACPI_SINGLE_THREADED
#endif
 
#ifdef ACPI_HELP_APP
#define ACPI_DEBUG_OUTPUT
#define ACPI_APPLICATION
#define ACPI_SINGLE_THREADED
#endif
 
/* Linkable ACPICA library */
 
#ifdef ACPI_LIBRARY
235,6 → 260,12
#define ACPI_FLUSH_CPU_CACHE()
#endif
 
/* "inline" keywords - configurable since inline is not standardized */
 
#ifndef ACPI_INLINE
#define ACPI_INLINE
#endif
 
/*
* Configurable calling conventions:
*