Added some constant values for sizes
parent
a0c695ef66
commit
fb6c35523e
|
@ -23,7 +23,7 @@ node_t* node_init (
|
||||||
node_t* nd,
|
node_t* nd,
|
||||||
node_index_t type,
|
node_index_t type,
|
||||||
void* data,
|
void* data,
|
||||||
uint64_t n_children,
|
uint64_t n_children,
|
||||||
...
|
...
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -43,3 +43,8 @@ typedef struct s {
|
||||||
tlhash_t *locals;
|
tlhash_t *locals;
|
||||||
} symbol_t;
|
} symbol_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define GLOBAL_BUCKET_SIZE 32
|
||||||
|
#define LOCAL_BUCKET_SIZE 16
|
||||||
|
|
||||||
|
#define DEFAULT_STRING_LIST_SIZE 8
|
Loading…
Reference in New Issue