From e0aea3742aed09a0a9ed384ccd7db203b6efc650 Mon Sep 17 00:00:00 2001 From: wangzhengquan <wangzhengquan85@126.com> Date: 星期六, 20 二月 2021 14:43:52 +0800 Subject: [PATCH] update --- src/shm/shm_allocator.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shm/shm_allocator.h b/src/shm/shm_allocator.h index 084a678..d14708f 100644 --- a/src/shm/shm_allocator.h +++ b/src/shm/shm_allocator.h @@ -67,12 +67,12 @@ public: static void *allocate (size_t size) { return mm_malloc(size); - // return mem_pool_malloc(size); + // return shm_mm_malloc(size); } static void deallocate (void *ptr) { return mm_free(ptr); - // return mem_pool_free(ptr); + // return shm_mm_free(ptr); } }; -- Gitblit v1.8.0