From 845724b453836f0537deb288f6b2b469daf846da Mon Sep 17 00:00:00 2001 From: Chongwei Su Date: Tue, 14 Mar 2023 17:44:23 +0800 Subject: [PATCH] fixed 8be3f69 from https://gitee.com/su-chongwei/third_party_jerryscript/pulls/108 modify JS_TASK_HEAP_SIZE to 64 issue:https://gitee.com/openharmony/third_party_jerryscript/issues/I6N2HQ 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 d9432e0c..f7efb094 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 (128) +#define JS_TASK_HEAP_SIZE (64) #endif /* JS_TASK_HEAP_SIZE */ // >= 51400 + (64-48) * 1024 + 8 -- Gitee