Files
smartdns/lib/cache.c
2018-06-04 23:20:10 +08:00

9 lines
145 B
C

#include "cache.h"
#include <pthread.h>
struct cache_head {
struct hlist_head hash_head;
int hash_size;
pthread_rwlock_t *rwlock;
};