Disable libunwind caching

This commit is contained in:
Théophile Bastian 2018-06-15 02:15:08 +02:00
parent 8b09fabf5a
commit f91dbfea0d

View file

@ -639,7 +639,7 @@ static int _unwind__prepare_access(struct thread *thread)
return -ENOMEM; return -ENOMEM;
} }
unw_set_caching_policy(thread->addr_space, UNW_CACHE_GLOBAL); unw_set_caching_policy(thread->addr_space, UNW_CACHE_NONE);
return 0; return 0;
} }