From a8e501d93f2402d9c0233e3fb1f07eb79645bf62 Mon Sep 17 00:00:00 2001 From: wangzhaoyong Date: Tue, 12 Aug 2025 15:54:06 +0800 Subject: [PATCH] default interop cp qiangji0728 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue: [新需求]: default interop cp qiangji0728 https://gitee.com/openharmony/commonlibrary_ets_utils/issues/ICSKKZ Signed-off-by: wangzhaoyong Change-Id: I8738404fee822637ebe197eb1dc864016b51570a --- .../common/helper/hybrid_concurrent_helper.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js_concurrent_module/common/helper/hybrid_concurrent_helper.cpp b/js_concurrent_module/common/helper/hybrid_concurrent_helper.cpp index 33009881..5e8b5568 100644 --- a/js_concurrent_module/common/helper/hybrid_concurrent_helper.cpp +++ b/js_concurrent_module/common/helper/hybrid_concurrent_helper.cpp @@ -30,7 +30,8 @@ ani_vm* ANIHelper::GetAniVm() void ANIHelper::InitializeAniVm() { - const int flag = OHOS::system::GetIntParameter("persist.commonlibrary.concurrencysupportinterop", 0); + // default support interop + const int flag = OHOS::system::GetIntParameter("persist.commonlibrary.concurrencysupportinterop", 1); globalEnableConcurrencyInteropFlag = (flag != 0); const std::string logMsg = globalEnableConcurrencyInteropFlag ? "worker and taskpool support interop." -- Gitee