parameter tuning. patch is made by @KeenS.
This commit is contained in:
parent
a0beeaead4
commit
2fe7adb26d
|
@ -0,0 +1,7 @@
|
|||
/* configurations for Picrin interpreter */
|
||||
|
||||
#define PIC_ARENA_SIZE (8 * 1024)
|
||||
|
||||
#define PIC_HEAP_PAGE_SIZE (2 * 1024 * 1024)
|
||||
|
||||
#define PIC_SYM_POOL_SIZE (2 * 1024)
|
|
@ -2,6 +2,8 @@
|
|||
* See Copyright Notice in picrin.h
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "picrin.h"
|
||||
#include "picrin/pair.h"
|
||||
#include "picrin/error.h"
|
||||
|
|
Loading…
Reference in New Issue