1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-28 20:21:45 +02:00

(ia64_validate_cache): New function.

(Logical change 1.153)
This commit is contained in:
hp.com!davidm 2004-01-20 01:51:17 +00:00
parent 172b01d775
commit 641b12427d

View file

@ -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
}