diff options
| author | Jan Wieck <JanWieck@Yahoo.com> | 1999-02-06 16:50:34 +0000 |
|---|---|---|
| committer | Jan Wieck <JanWieck@Yahoo.com> | 1999-02-06 16:50:34 +0000 |
| commit | ead64f317be6eae7cdff9074659f8140aea3c4d5 (patch) | |
| tree | f7fe63cf1348da3e4faec9e2dde2f87192ae257a /src/include/nodes/memnodes.h | |
| parent | 7d2b3874aa0a759f69c0eaa0e140353418fc270e (diff) | |
| download | postgresql-ead64f317be6eae7cdff9074659f8140aea3c4d5.tar.gz | |
New alloc set code using a memory block pool for small allocations.
Jan
Diffstat (limited to 'src/include/nodes/memnodes.h')
| -rw-r--r-- | src/include/nodes/memnodes.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/nodes/memnodes.h b/src/include/nodes/memnodes.h index accf6ed131..4be4fe4262 100644 --- a/src/include/nodes/memnodes.h +++ b/src/include/nodes/memnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: memnodes.h,v 1.8 1998/09/01 04:36:39 momjian Exp $ + * $Id: memnodes.h,v 1.9 1999/02/06 16:50:30 wieck Exp $ * * XXX the typedefs in this file are different from the other ???nodes.h; * they are pointers to structures instead of the structures themselves. @@ -56,7 +56,7 @@ typedef struct MemoryContextMethodsData void (*dump) (); } *MemoryContextMethods; -typedef struct MemoryContext +typedef struct MemoryContextData { NodeTag type; MemoryContextMethods method; @@ -64,7 +64,7 @@ typedef struct MemoryContext /* think about doing this right some time but we'll have explicit fields for now -ay 10/94 */ -typedef struct GlobalMemory +typedef struct GlobalMemoryData { NodeTag type; MemoryContextMethods method; @@ -75,14 +75,14 @@ typedef struct GlobalMemory typedef MemoryContext *PortalMemoryContext; -typedef struct PortalVariableMemory +typedef struct PortalVariableMemoryData { NodeTag type; MemoryContextMethods method; AllocSetData setData; } *PortalVariableMemory; -typedef struct PortalHeapMemory +typedef struct PortalHeapMemoryData { NodeTag type; MemoryContextMethods method; |
