1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Add palloc0 function to inline MemSet for newNode call.

This commit is contained in:
Bruce Momjian
2002-11-10 02:17:25 +00:00
parent 7aeab94adf
commit 78822b328c
4 changed files with 49 additions and 20 deletions

View File

@ -21,7 +21,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: palloc.h,v 1.21 2002/10/11 04:16:44 momjian Exp $
* $Id: palloc.h,v 1.22 2002/11/10 02:17:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -46,9 +46,12 @@ extern DLLIMPORT MemoryContext CurrentMemoryContext;
* Fundamental memory-allocation operations (more are in utils/memutils.h)
*/
extern void *MemoryContextAlloc(MemoryContext context, Size size);
extern void *MemoryContextAllocZero(MemoryContext context, Size size);
#define palloc(sz) MemoryContextAlloc(CurrentMemoryContext, (sz))
#define palloc0(sz) MemoryContextAllocZero(CurrentMemoryContext, (sz))
extern void pfree(void *pointer);
extern void *repalloc(void *pointer, Size size);