/*
 * palloc.h --
 *	POSTGRES memory allocator definitions.
 */

#ifndef	PAllocIncluded		/* Include this file only once */
#define PAllocIncluded	1

/*
 * Identification:
 */
#define PALLOC_H	"/usr/local/devel/postgres-v4r2/src/backend/utils/RCS/palloc.h,v 1.8 1991/11/12 20:24:42 mer Exp"

#include "tmp/c.h"
#include "tmp/simplelists.h"

/*
 * palloc --
 *	Returns pointer to aligned memory of specified size.
 *
 * Exceptions:
 *	BadArgument if size < 1 or size >= MaxAllocSize.
 *	ExhaustedMemory if allocation fails.
 *	NonallocatedPointer if pointer was not returned by palloc or repalloc
 *		or may have been freed already.
 *
 * pfree --
 *	Frees memory associated with pointer returned from palloc or repalloc.
 *
 * Exceptions:
 *	BadArgument if pointer is invalid.
 *	FreeInWrongContext if pointer was allocated in a different "context."
 *	NonallocatedPointer if pointer was not returned by palloc or repalloc
 *		or may have been subsequently freed.
 */

#ifndef PALLOC_DEBUG
extern Pointer palloc ARGS((Size size));
extern void    pfree  ARGS((Pointer pointer)); 
#else
Pointer palloc_debug ARGS((String file , int line , Size size ));
void pfree_debug ARGS((String file , int line , Pointer pointer ));
#endif PALLOC_DEBUG

typedef struct PallocDebugData {
    Pointer     pointer;
    Size        size;
    String      file;
    int         line;
    String      context;
    SLNode      Link;
} PallocDebugData;

/*
 * psize --
 *	Returns size of memory returned from palloc or repalloc.
 *
 * Note:
 *	Psize may be called on objects allocated in other memory contexts.
 *
 * Exceptions:
 *	BadArgument if pointer is invalid.
 *	NonallocatedPointer if pointer was not returned by palloc or repalloc
 *		or may have been freed already.
 */
extern
Size
psize ARGS((
	Pointer	pointer
));

/*
 * repalloc --
 *	Returns pointer to aligned memory of specified size.
 *
 * Side effects:
 *	The returned memory is first filled with the contents of *pointer
 *	up to the minimum of size and psize(pointer).  Pointer is freed.
 *
 * Exceptions:
 *	BadArgument if pointer is invalid or size < 1 or size >= MaxAllocSize.
 *	ExhaustedMemory if allocation fails.
 *	NonallocatedPointer if pointer was not returned by palloc or repalloc
 *		or may have been freed already.
 */
extern
Pointer
repalloc ARGS((
	Pointer	pointer,
	Size	size
));

String pcontext ARGS((void ));
void set_palloc_debug ARGS((bool noisy , bool record ));
Pointer palloc_record ARGS((
	String file,
	int line,
	Size size,
	String context
));
void pfree_remove ARGS((String file , int line , Pointer pointer ));
void pfree_record ARGS((String file , int line , Pointer pointer ));
void dump_palloc_list ARGS((String caller , bool verbose ));
void alloc_set_message ARGS((
	String file,
	int line,
	Pointer pointer,
	Pointer set
));
void free_palloc_list ARGS((SLList *list ));
void start_palloc_list ARGS((void ));
void print_palloc_list ARGS((void ));
void start_palloc_diff_list ARGS((void ));
void end_palloc_diff_list ARGS((void ));
void print_palloc_diff_list ARGS((void ));
char *malloc_debug ARGS((String file , int line , int size ));
int free_debug ARGS((String file , int line , char *p ));

#endif /* !defined(PAllocIncluded) */
