mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 07:37:38 +01:00
Merge ../libunwind-v0.98
Conflicts: configure configure.in src/ia64/Ginit.c
This commit is contained in:
commit
826374cee5
2 changed files with 4 additions and 5 deletions
4
NEWS
4
NEWS
|
@ -8,6 +8,10 @@
|
|||
* News for v0.98.6:
|
||||
|
||||
** Fix address-leak triggered by invalid byte-order. Fixed by Andreas Schwab.
|
||||
** On ia64, get_static_proc_name() no longer uses a weak reference to
|
||||
_Uelf64_get_proc_name(), since that was causing problems with archive
|
||||
libraries and no longer served any apparent purpose. Fixed by
|
||||
Curt Wohlgemuth.
|
||||
|
||||
* News for v0.98.5:
|
||||
|
||||
|
|
|
@ -348,11 +348,6 @@ get_static_proc_name (unw_addr_space_t as, unw_word_t ip,
|
|||
char *buf, size_t buf_len, unw_word_t *offp,
|
||||
void *arg)
|
||||
{
|
||||
#ifndef _UNW_LOCAL_ONLY
|
||||
# pragma weak _Uelf64_get_proc_name
|
||||
if (!_Uelf64_get_proc_name)
|
||||
return -UNW_EINVAL;
|
||||
#endif
|
||||
return _Uelf64_get_proc_name (as, getpid (), ip, buf, buf_len, offp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue