mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-17 21:47:37 +01:00
(local_resume): Unsupported on HP-UX for now.
(remote_install_cursor): Ditto. (Logical change 1.75)
This commit is contained in:
parent
5929f8e02b
commit
3b5cb41875
1 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
static inline int
|
static inline int
|
||||||
local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg)
|
local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg)
|
||||||
{
|
{
|
||||||
|
#ifndef __hpux
|
||||||
unw_word_t val, sol, sof, pri_unat, n, pfs;
|
unw_word_t val, sol, sof, pri_unat, n, pfs;
|
||||||
struct cursor *c = (struct cursor *) cursor;
|
struct cursor *c = (struct cursor *) cursor;
|
||||||
struct
|
struct
|
||||||
|
@ -137,6 +138,9 @@ local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg)
|
||||||
extra.r18 = c->eh_args[3];
|
extra.r18 = c->eh_args[3];
|
||||||
}
|
}
|
||||||
_Uia64_install_context (c, pri_unat, (unw_word_t *) &extra);
|
_Uia64_install_context (c, pri_unat, (unw_word_t *) &extra);
|
||||||
|
#else
|
||||||
|
return -UNW_EINVAL;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
HIDDEN int
|
HIDDEN int
|
||||||
|
@ -152,6 +156,7 @@ ia64_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg)
|
||||||
static inline int
|
static inline int
|
||||||
remote_install_cursor (struct cursor *c)
|
remote_install_cursor (struct cursor *c)
|
||||||
{
|
{
|
||||||
|
#ifndef __hpux
|
||||||
int (*access_reg) (unw_addr_space_t, unw_regnum_t, unw_word_t *,
|
int (*access_reg) (unw_addr_space_t, unw_regnum_t, unw_word_t *,
|
||||||
int write, void *);
|
int write, void *);
|
||||||
int (*access_fpreg) (unw_addr_space_t, unw_regnum_t, unw_fpreg_t *,
|
int (*access_fpreg) (unw_addr_space_t, unw_regnum_t, unw_fpreg_t *,
|
||||||
|
@ -227,6 +232,7 @@ remote_install_cursor (struct cursor *c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (*c->as->acc.resume) (c->as, (unw_cursor_t *) c, c->as_arg);
|
return (*c->as->acc.resume) (c->as, (unw_cursor_t *) c, c->as_arg);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue