acid: increase hash size (thanks jonas.amoson)
when loading large binaries such as netsurf, with many symbols, our hash table fills up with collisions and loading the symbol table gets very slow. Bumping it up drops the time to lstk() in acid on netsurf from 4 minutes to 8 seconds.
This commit is contained in:
parent
76ed42e31f
commit
1787a8b990
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ enum
|
|||
{
|
||||
Eof = -1,
|
||||
Strsize = 4096,
|
||||
Hashsize = 128,
|
||||
Hashsize = 32768,
|
||||
Maxarg = 512,
|
||||
NFD = 100,
|
||||
Maxproc = 50,
|
||||
|
|
Loading…
Reference in a new issue