From dd9e392f4a17f6708bbdec62bcbd1a059496ac5b Mon Sep 17 00:00:00 2001 From: Chongwei Su Date: Sat, 11 Mar 2023 10:06:37 +0800 Subject: [PATCH] fixed fd223b9 from https://gitee.com/su-chongwei/third_party_jerryscript/pulls/106 modify JS_TASK_HEAP_SIZE to 128 issue:https://gitee.com/openharmony/third_party_jerryscript/issues/I6M7ZI Signed-off-by: Chongwei Su --- jerry-port/config-jupiter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jerry-port/config-jupiter.h b/jerry-port/config-jupiter.h index f7efb094..d9432e0c 100644 --- a/jerry-port/config-jupiter.h +++ b/jerry-port/config-jupiter.h @@ -30,7 +30,7 @@ #define BMS_TASK_CONTEXT_AND_HEAP_SIZE (BMS_TASK_HEAP_SIZE + CONTEXT_SIZE_FOR_TASK) #ifndef JS_TASK_HEAP_SIZE -#define JS_TASK_HEAP_SIZE (64) +#define JS_TASK_HEAP_SIZE (128) #endif /* JS_TASK_HEAP_SIZE */ // >= 51400 + (64-48) * 1024 + 8 -- Gitee