diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-02-13 23:22:53 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-02-13 23:22:53 +0000 |
| commit | 6724a5078748946b8150700125571b6ea62feca8 (patch) | |
| tree | a7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/backend/utils/mmgr/aset.c | |
| parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) | |
| download | postgresql-6724a5078748946b8150700125571b6ea62feca8.tar.gz | |
Change my-function-name-- to my_function_name, and optimizer renames.
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 739bd99897..de364bcf90 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 |
