Set initial table_length back to a sane starting value

This commit is contained in:
Tony Garnock-Jones 2015-06-30 23:28:09 -04:00
parent 1656f3aedc
commit b0b7db518c
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ int tt_arena_init(tt_arena_t *a,
a->atom_incref = atom_incref;
a->atom_decref = atom_decref;
a->max_probe = 0;
a->table_length = 16; //16411; /* 16384; */
a->table_length = 16411; /* 16384; */
a->table = calloc(a->table_length, sizeof(a->table[0]));
a->headers = calloc(a->table_length, sizeof(a->headers[0]));
a->nodes = calloc(a->table_length, sizeof(a->nodes[0]));