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

概要

引数

MemoryContext context

実装

void MemoryContextResetChildren(MemoryContext context) {

	MemoryContext child;
	AssertArg(MemoryContextIsValid(context));
	for (child = context->firstchild; child != NULL; child = child->nextchild)
		MemoryContextReset(child);

}

呼出元

備考

* MemoryContextResetChildren
*		Release all space allocated within a context's descendants,
*		but don't delete the contexts themselves.  The named context
*		itself is not touched.

履歴

コメント



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