diff options
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 accf6ed131d..4be4fe42620 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; |