From 84850a50224f8cec8bd03310d864e8f9e3d71306 Mon Sep 17 00:00:00 2001 From: zhupu1122 Date: Thu, 21 Aug 2025 16:06:27 +0800 Subject: [PATCH] adjust timeout Signed-off-by: zhupu1122 --- .../innerkits/unwinder/src/unwind_local/thread_context.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interfaces/innerkits/unwinder/src/unwind_local/thread_context.cpp b/interfaces/innerkits/unwinder/src/unwind_local/thread_context.cpp index 4cac648ec..b41bd3770 100644 --- a/interfaces/innerkits/unwinder/src/unwind_local/thread_context.cpp +++ b/interfaces/innerkits/unwinder/src/unwind_local/thread_context.cpp @@ -50,7 +50,9 @@ namespace { std::mutex g_localMutex; std::map> g_contextMap {}; constexpr std::chrono::seconds TIME_OUT = std::chrono::seconds(1); +#ifndef __aarch64__ constexpr std::chrono::seconds TIME_OUT_IN_COPY_CONTEXT = std::chrono::seconds(3); +#endif void CreateContext(std::shared_ptr& threadContext) { -- Gitee