このページを編集する際は、編集に関する方針に従ってください。
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.
更新日 | 更新者 | 更新内容 |