shm implemented as memfd syscall
cheliequan
2022-12-27 54951dfb930bea890aef14be02236f81b3a19f2e
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__