1
0
Fork 0
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:
hp.com!davidm 2004-08-26 10:02:46 +00:00
parent f20eb7ea72
commit f576cce748
11 changed files with 11 additions and 11 deletions

View file

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

View file

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

View file

@ -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);

View file

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

View file

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

View file

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

View file

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

View file

@ -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);

View file

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

View file

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

View file

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