1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-19 13:42:17 +03:00

Change my-function-name-- to my_function_name, and optimizer renames.

This commit is contained in:
Bruce Momjian
1999-02-13 23:22:53 +00:00
parent 8c3fff7337
commit 6724a50787
617 changed files with 2005 additions and 2031 deletions

View File

@@ -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