shm implemented as memfd syscall
zhangmeng
2023-07-27 157b3411dd123694ca29dd80fe9ecc683958ccab
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __HASHTABLE_DEBUG__HH__
#define __HASHTABLE_DEBUG__HH__
 
//#define __SHMT_DEBUG_MODE__
 
#ifdef __SHMT_DEBUG_MODE__
#include <stdio.h>
#define shmht_debug(a) printf a
#else
#define shmht_debug(a)
#endif
 
#endif //__HASHTABLE_DEBUG__HH__