mirror of
https://github.com/acpica/acpica/
synced 2025-02-14 20:44:05 +03:00
Moved memory allocation struct here.
date 99.08.04.21.55.00; author rmoore1; state Exp;
This commit is contained in:
parent
730ba318b5
commit
a53574fea3
@ -276,5 +276,24 @@ typedef struct
|
||||
} GPE_LEVEL_INFO;
|
||||
|
||||
|
||||
/* Entry for a memory allocation (debug only) */
|
||||
|
||||
|
||||
#define MEM_MALLOC 0
|
||||
#define MEM_CALLOC 1
|
||||
|
||||
typedef struct AllocationInfo
|
||||
{
|
||||
void *Address;
|
||||
UINT32 Size;
|
||||
UINT8 AllocType;
|
||||
UINT32 Component;
|
||||
char Module[32];
|
||||
INT32 Line;
|
||||
struct AllocationInfo *Previous;
|
||||
struct AllocationInfo *Next;
|
||||
|
||||
} ALLOCATION_INFO;
|
||||
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user