From f91dbfea0d52973631a5f435745f0359838ba451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Fri, 15 Jun 2018 02:15:08 +0200 Subject: [PATCH] Disable libunwind caching --- util/unwind-libunwind-local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/unwind-libunwind-local.c b/util/unwind-libunwind-local.c index af87304..e0d725c 100644 --- a/util/unwind-libunwind-local.c +++ b/util/unwind-libunwind-local.c @@ -639,7 +639,7 @@ static int _unwind__prepare_access(struct thread *thread) return -ENOMEM; } - unw_set_caching_policy(thread->addr_space, UNW_CACHE_GLOBAL); + unw_set_caching_policy(thread->addr_space, UNW_CACHE_NONE); return 0; }