日期:2014-05-16 浏览次数:20503 次
?
话说 MemoryContextMethods 结构里的函数实现了pg 里AllocSet/MemoryContext 的内存管理机制,定义见下面。
typedef struct MemoryContextMethods
{
???? void ?? *(*alloc) (MemoryContext context, Size size);
???? /* call this free_p in case someone #define's free() */
???? void ???? (* free_p ) (MemoryContext context, void *pointer);
???? void ?? *(*realloc) (MemoryContext context, void *pointer, Size size);
???? void ???? (*init) (MemoryContext context);
???? void ???? (*reset) (MemoryContext context);
???? void ???? (*delete ) (MemoryContext context);
???? Size???? (*get_chunk_space) (MemoryContext context, void *pointer);
???? bool ???? (*is_empty) (MemoryContext context);
???? void ???? (*stats) (MemoryContext context);
#ifdef MEMORY_CONTEXT_CHECKING
???? void ???? (*check) (MemoryContext context);
#endif
} MemoryContextMethods;
?