mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-05 01:09:27 +01:00
(ia64_validate_cache): New function.
(Logical change 1.153)
This commit is contained in:
parent
172b01d775
commit
641b12427d
1 changed files with 14 additions and 0 deletions
|
@ -595,3 +595,17 @@ ia64_find_save_locs (struct cursor *c)
|
|||
put_script_cache (c->as, cache, &saved_sigmask);
|
||||
return ret;
|
||||
}
|
||||
|
||||
HIDDEN void
|
||||
ia64_validate_cache (unw_addr_space_t as, void *arg)
|
||||
{
|
||||
#ifndef UNW_REMOTE_ONLY
|
||||
if (ia64_local_validate_cache (as, arg) == 1)
|
||||
return;
|
||||
#endif
|
||||
|
||||
#ifndef UNW_LOCAL_ONLY
|
||||
/* local info is up-to-date, check dynamic info. */
|
||||
unwi_dyn_validate_cache (as, arg);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue