Skip to content

Commit

Permalink
core: pv - increased the size for pv and transformation hash tables
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Nov 21, 2017
1 parent cb58fc3 commit 877b2c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/core/pvapi.c
Expand Up @@ -40,8 +40,8 @@
#include "pvapi.h"
#include "pvar.h"

#define PV_TABLE_SIZE 32 /*!< pseudo-variables table size */
#define TR_TABLE_SIZE 16 /*!< transformations table size */
#define PV_TABLE_SIZE 64 /*!< pseudo-variables table size */
#define TR_TABLE_SIZE 32 /*!< transformations table size */


void tr_destroy(trans_t *t);
Expand Down
2 changes: 1 addition & 1 deletion src/core/pvar.h
Expand Up @@ -240,7 +240,7 @@ typedef struct _pv_cache
struct _pv_cache *next;
} pv_cache_t;

#define PV_CACHE_SIZE 32 /*!< pseudo-variables cache table size */
#define PV_CACHE_SIZE 64 /*!< pseudo-variables cache table size */

pv_cache_t **pv_cache_get_table(void);

Expand Down

0 comments on commit 877b2c8

Please sign in to comment.