parameter tuning. patch is made by @KeenS.

This commit is contained in:
Yuichi Nishiwaki 2014-09-10 00:44:06 +09:00
parent a0beeaead4
commit 2fe7adb26d
2 changed files with 9 additions and 0 deletions

7
src/config.h Normal file
View File

@ -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)

View File

@ -2,6 +2,8 @@
* See Copyright Notice in picrin.h
*/
#include "config.h"
#include "picrin.h"
#include "picrin/pair.h"
#include "picrin/error.h"