diff options
Diffstat (limited to 'src/backend/utils/mmgr/aset.c')
-rw-r--r-- | src/backend/utils/mmgr/aset.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/backend/utils/mmgr/aset.c b/src/backend/utils/mmgr/aset.c index 739bd998971..de364bcf90a 100644 --- a/src/backend/utils/mmgr/aset.c +++ b/src/backend/utils/mmgr/aset.c @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * aset.c-- + * aset.c * Allocation set definitions. * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/aset.c,v 1.13 1999/02/07 13:37:56 wieck Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/aset.c,v 1.14 1999/02/13 23:20:09 momjian Exp $ * * NOTE: * This is a new (Feb. 05, 1999) implementation of the allocation set @@ -88,7 +88,7 @@ AllocSetFreeIndex(Size size) */ /* - * AllocSetInit -- + * AllocSetInit * Initializes given allocation set. * * Note: @@ -116,7 +116,7 @@ AllocSetInit(AllocSet set, AllocMode mode, Size limit) /* - * AllocSetReset -- + * AllocSetReset * Frees memory which is allocated in the given set. * * Exceptions: @@ -141,7 +141,7 @@ AllocSetReset(AllocSet set) } /* - * AllocSetContains -- + * AllocSetContains * True iff allocation set contains given allocation element. * * Exceptions: @@ -158,7 +158,7 @@ AllocSetContains(AllocSet set, AllocPointer pointer) } /* - * AllocSetAlloc -- + * AllocSetAlloc * Returns pointer to allocated memory of given size; memory is added * to the set. * @@ -273,7 +273,7 @@ AllocSetAlloc(AllocSet set, Size size) } /* - * AllocSetFree -- + * AllocSetFree * Frees allocated memory; memory is removed from the set. * * Exceptions: @@ -299,7 +299,7 @@ AllocSetFree(AllocSet set, AllocPointer pointer) } /* - * AllocSetRealloc -- + * AllocSetRealloc * Returns new pointer to allocated memory of given size; this memory * is added to the set. Memory associated with given pointer is copied * into the new memory, and the old memory is freed. @@ -342,7 +342,7 @@ AllocSetRealloc(AllocSet set, AllocPointer pointer, Size size) } /* - * AllocSetDump -- + * AllocSetDump * Displays allocated set. */ void |