このページを編集する際は、編集に関する方針に従ってください。
#ifdef __GNUC__
static __inline__ MemoryContext MemoryContextSwitchTo(MemoryContext context) { MemoryContext old = CurrentMemoryContext;
CurrentMemoryContext = context; return old; } #else
extern MemoryContext MemoryContextSwitchTo(MemoryContext context); #endif /* __GNUC__ */
/* * MemoryContextSwitchTo can't be a macro in standard C compilers. * But we can make it an inline function when using GCC. */
更新日 | 更新者 | 更新内容 |