diff --git a/extlib/benz/include/picrin/config.h b/extlib/benz/include/picrin/config.h index 76c30066..889e268b 100644 --- a/extlib/benz/include/picrin/config.h +++ b/extlib/benz/include/picrin/config.h @@ -58,11 +58,11 @@ #endif #ifndef PIC_ARENA_SIZE -# define PIC_ARENA_SIZE 1000 +# define PIC_ARENA_SIZE (8 * 1024) #endif #ifndef PIC_HEAP_PAGE_SIZE -# define PIC_HEAP_PAGE_SIZE 10000 +# define PIC_HEAP_PAGE_SIZE (2 * 1024 * 1024) #endif #ifndef PIC_STACK_SIZE @@ -74,7 +74,7 @@ #endif #ifndef PIC_SYM_POOL_SIZE -# define PIC_SYM_POOL_SIZE 128 +# define PIC_SYM_POOL_SIZE (2 * 1024) #endif #ifndef PIC_IREP_SIZE diff --git a/src/main.c b/src/main.c index 656be69b..7d4f6fd1 100644 --- a/src/main.c +++ b/src/main.c @@ -2,10 +2,6 @@ * See Copyright Notice in picrin.h */ -#define PIC_ARENA_SIZE (8 * 1024) -#define PIC_HEAP_PAGE_SIZE (2 * 1024 * 1024) -#define PIC_SYM_POOL_SIZE (2 * 1024) - #include "picrin.h" #include "picrin/pair.h" #include "picrin/error.h"