mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-11 11:33:43 +01:00
Drop debug-level for function-trace to 1.
(Logical change 1.257)
This commit is contained in:
parent
f20eb7ea72
commit
f576cce748
11 changed files with 11 additions and 11 deletions
|
@ -48,7 +48,7 @@ unw_init_local (unw_cursor_t *cursor, unw_context_t *uc)
|
|||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
#ifdef __hpux
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ unw_init_remote (unw_cursor_t *cursor, unw_addr_space_t as, void *as_arg)
|
|||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
if (as == unw_local_addr_space)
|
||||
/* This special-casing is unfortunate and shouldn't be needed;
|
||||
|
|
|
@ -257,7 +257,7 @@ unw_resume (unw_cursor_t *cursor)
|
|||
{
|
||||
struct cursor *c = (struct cursor *) cursor;
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
#ifdef UNW_LOCAL_ONLY
|
||||
return local_resume (c->as, cursor, c->as_arg);
|
||||
|
|
|
@ -333,7 +333,7 @@ unw_step (unw_cursor_t *cursor)
|
|||
struct cursor *c = (struct cursor *) cursor;
|
||||
int ret;
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
ret = ia64_find_save_locs (c);
|
||||
if (ret < 0)
|
||||
|
|
|
@ -44,7 +44,7 @@ unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
|
|||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
c->dwarf.as = unw_local_addr_space;
|
||||
c->dwarf.as_arg = uc;
|
||||
|
|
|
@ -37,7 +37,7 @@ unw_init_remote (unw_cursor_t *cursor, unw_addr_space_t as, void *as_arg)
|
|||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
c->dwarf.as = as;
|
||||
c->dwarf.as_arg = as_arg;
|
||||
|
|
|
@ -144,7 +144,7 @@ unw_resume (unw_cursor_t *cursor)
|
|||
struct cursor *c = (struct cursor *) cursor;
|
||||
int ret;
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
if ((ret = establish_machine_state (c)) < 0)
|
||||
return ret;
|
||||
|
|
|
@ -32,7 +32,7 @@ unw_step (unw_cursor_t *cursor)
|
|||
struct cursor *c = (struct cursor *) cursor;
|
||||
int ret, i;
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
/* Try DWARF-based unwinding... */
|
||||
ret = dwarf_step (&c->dwarf);
|
||||
|
|
|
@ -46,7 +46,7 @@ unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
|
|||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
c->dwarf.as = unw_local_addr_space;
|
||||
c->dwarf.as_arg = uc;
|
||||
|
|
|
@ -39,7 +39,7 @@ unw_init_remote (unw_cursor_t *cursor, unw_addr_space_t as, void *as_arg)
|
|||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
c->dwarf.as = as;
|
||||
c->dwarf.as_arg = as_arg;
|
||||
|
|
|
@ -83,7 +83,7 @@ unw_resume (unw_cursor_t *cursor)
|
|||
struct cursor *c = (struct cursor *) cursor;
|
||||
int ret;
|
||||
|
||||
Debug (2, "(cursor=%p)\n", c);
|
||||
Debug (1, "(cursor=%p)\n", c);
|
||||
|
||||
if ((ret = establish_machine_state (c)) < 0)
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue