We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dddbfe9 commit 49d3642Copy full SHA for 49d3642
assoc.h
@@ -15,4 +15,3 @@ bool assoc_iterate(void *iterp, item **it);
15
void assoc_iterate_final(void *iterp);
16
17
extern unsigned int hashpower;
18
-extern unsigned int item_lock_hashpower;
thread.c
@@ -86,7 +86,7 @@ static pthread_mutex_t worker_hang_lock;
86
static pthread_mutex_t *item_locks;
87
/* size of the item lock hash table */
88
static uint32_t item_lock_count;
89
-unsigned int item_lock_hashpower;
+static unsigned int item_lock_hashpower;
90
#define hashsize(n) ((unsigned long int)1<<(n))
91
#define hashmask(n) (hashsize(n)-1)
92
0 commit comments