wangzhengquan
2020-07-27 aeaeda81cfe398081a7c1a5c287981c8df974aa2
1
2
3
4
5
6
7
8
9
10
11
#include "shm_mm.h"
#include "mem_pool.h"
#include "hashtable.h"
 
void shm_init(int size) {
    mem_pool_init(size);
}
 
void shm_destroy() {
    mem_pool_destroy();
}