/************************************************************************ Inline HOOK API V1.1 thanks to 海风月影, xIkUg ,sucsor by solosky created at 2011.06.29, updated at 2011.06.30 ---------------------------------- Inline HOOK API V1.1 2011.06.30
记忆
包内存实现内存分配器和释放器。 当前,它使用unix上的mmap和Windows上的VirtualAlloc来向操作系统请求内存页面,并使用munmap和VirtualFree来向操作系统释放内存页面。 分配器在块的单链接自由列表上使用首选算法。 块分为称为arenas的集合,它们对应于从操作系统映射的内存块。 释放集合中的所有块时,将不映射竞技场。
// Alloc allocates size bytes of memory, and returns a pointer to it