mirror of
https://github.com/acpica/acpica/
synced 2025-03-14 02:02:52 +03:00
AcpiTables keeps table info for later deletion
date 99.07.15.20.28.00; author rmoore1; state Exp;
This commit is contained in:
parent
ba8fd35fef
commit
7c02ab6bcc
@ -118,6 +118,26 @@
|
||||
#define _ACPI_INTERNAL_H
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* ACPI Table information. We save the table address, length,
|
||||
* and type of memory allocation (mapped or allocated) for each
|
||||
* table for 1) when we exit, and 2) if a new table is installed
|
||||
*/
|
||||
|
||||
#define ACPI_MEM_NOT_ALLOCATED 0
|
||||
#define ACPI_MEM_ALLOCATED 1
|
||||
#define ACPI_MEM_MAPPED 2
|
||||
|
||||
typedef struct AcpiTableInfo
|
||||
{
|
||||
void *Pointer;
|
||||
UINT32 Length;
|
||||
UINT32 Allocation;
|
||||
|
||||
} ACPI_TABLE_INFO;
|
||||
|
||||
|
||||
/* Operational mode of AML scanner */
|
||||
|
||||
typedef enum
|
||||
|
Loading…
x
Reference in New Issue
Block a user