diff options
Diffstat (limited to 'src/include/utils/memutils.h')
-rw-r--r-- | src/include/utils/memutils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/utils/memutils.h b/src/include/utils/memutils.h index 8e9c184b9c6..c84ea249972 100644 --- a/src/include/utils/memutils.h +++ b/src/include/utils/memutils.h @@ -15,7 +15,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: memutils.h,v 1.10 1997/09/08 02:39:50 momjian Exp $ + * $Id: memutils.h,v 1.11 1997/09/08 20:59:22 momjian Exp $ * * NOTES * some of the information in this file will be moved to @@ -193,7 +193,7 @@ typedef enum AllocMode StaticAllocMode, /* always "statically" allocate */ TunableAllocMode, /* allocations are "tuned" */ BoundedAllocMode /* allocations bounded to fixed usage */ -} AllocMode; +} AllocMode; #define DefaultAllocMode DynamicAllocMode @@ -205,7 +205,7 @@ typedef struct AllocSetData { OrderedSetData setData; /* Note: this will change in the future to support other modes */ -} AllocSetData; +} AllocSetData; typedef AllocSetData *AllocSet; @@ -228,7 +228,7 @@ extern void AllocSetReset(AllocSet set); extern bool AllocSetContains(AllocSet set, AllocPointer pointer); extern AllocPointer AllocSetAlloc(AllocSet set, Size size); extern void AllocSetFree(AllocSet set, AllocPointer pointer); -extern AllocPointer +extern AllocPointer AllocSetRealloc(AllocSet set, AllocPointer pointer, Size size); |