9 lines
145 B
C
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;
|
|
};
|