shm implemented as memfd syscall
cheliequan
2022-12-28 078d17014ed3bc3a00eafcd535095a03c64bea6c
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__