/** * @file README * * @date Oct 19, 2011 * @author Wang Liang * @email WangLiangCN@live.com * * @brief There are many kinds of memory pools, different of them is suitable for different projects. */ There are mainly three attributes for memory pool: - Can store variable length of string or fixed length of string. - Able to recycle memory automatically when running or not. - Store in list style or block style. So, there implemented eight kinds of memory pool in each directory, we mark them as three attributes' first letter, so here lists all eight kinds of memory pools: - FULMemoryPool/ Fixed length, Unable to recycle, List style. - VULMemoryPool/ Variable length, Unable to recycle, List style. - FALMemoryPool/ Fixed length, Able to recycle, List style. - VALMemoryPool/ Variable length, Able to recycle, List style. - FUBMemoryPool/ Fixed length, Unable to recycle, Block store style. - VUBMemoryPool/ Variable length, Unable to recycle, Block store style. - FABMemoryPool/ Fixed length, Able to recycle, Block store style. - VABMemoryPool/ Variable length, Able to recycle, Block store style.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。