このページを編集する際は、編集に関する方針に従ってください。

概要

実装

typedef struct MemoryContextData {

	NodeTag		type;			/* identifies exact kind of context */
	MemoryContextMethods *methods;		/* virtual function table */
	MemoryContext parent;		/* NULL if no parent (toplevel context) */
	MemoryContext firstchild;	/* head of linked list of children */
	MemoryContext nextchild;	/* next child of same parent */
	char	   *name;			/* context name (just for debugging) */

} MemoryContextData;

呼出元

備考

/* utils/palloc.h contains typedef struct MemoryContextData *MemoryContext */

履歴

コメント



トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS