From f576cce7480d6acee537cecfeb5530187e50f785 Mon Sep 17 00:00:00 2001 From: "hp.com!davidm" Date: Thu, 26 Aug 2004 10:02:46 +0000 Subject: [PATCH] Drop debug-level for function-trace to 1. (Logical change 1.257) --- src/ia64/Ginit_local.c | 2 +- src/ia64/Ginit_remote.c | 2 +- src/ia64/Gresume.c | 2 +- src/ia64/Gstep.c | 2 +- src/x86/Ginit_local.c | 2 +- src/x86/Ginit_remote.c | 2 +- src/x86/Gresume.c | 2 +- src/x86/Gstep.c | 2 +- src/x86_64/Ginit_local.c | 2 +- src/x86_64/Ginit_remote.c | 2 +- src/x86_64/Gresume.c | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/ia64/Ginit_local.c b/src/ia64/Ginit_local.c index 7331af50..0aa06fd9 100644 --- a/src/ia64/Ginit_local.c +++ b/src/ia64/Ginit_local.c @@ -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 { diff --git a/src/ia64/Ginit_remote.c b/src/ia64/Ginit_remote.c index c9a316d3..302c6fb7 100644 --- a/src/ia64/Ginit_remote.c +++ b/src/ia64/Ginit_remote.c @@ -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; diff --git a/src/ia64/Gresume.c b/src/ia64/Gresume.c index e36fb344..27d853d0 100644 --- a/src/ia64/Gresume.c +++ b/src/ia64/Gresume.c @@ -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); diff --git a/src/ia64/Gstep.c b/src/ia64/Gstep.c index edae271b..002da37c 100644 --- a/src/ia64/Gstep.c +++ b/src/ia64/Gstep.c @@ -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) diff --git a/src/x86/Ginit_local.c b/src/x86/Ginit_local.c index 76c297b3..7b86d6e5 100644 --- a/src/x86/Ginit_local.c +++ b/src/x86/Ginit_local.c @@ -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; diff --git a/src/x86/Ginit_remote.c b/src/x86/Ginit_remote.c index 1cd395b0..5d3827d9 100644 --- a/src/x86/Ginit_remote.c +++ b/src/x86/Ginit_remote.c @@ -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; diff --git a/src/x86/Gresume.c b/src/x86/Gresume.c index faf0b527..cab43410 100644 --- a/src/x86/Gresume.c +++ b/src/x86/Gresume.c @@ -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; diff --git a/src/x86/Gstep.c b/src/x86/Gstep.c index afa65ef4..1945c962 100644 --- a/src/x86/Gstep.c +++ b/src/x86/Gstep.c @@ -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); diff --git a/src/x86_64/Ginit_local.c b/src/x86_64/Ginit_local.c index 8972fd26..9bb25137 100644 --- a/src/x86_64/Ginit_local.c +++ b/src/x86_64/Ginit_local.c @@ -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; diff --git a/src/x86_64/Ginit_remote.c b/src/x86_64/Ginit_remote.c index 982edb60..9b2fd233 100644 --- a/src/x86_64/Ginit_remote.c +++ b/src/x86_64/Ginit_remote.c @@ -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; diff --git a/src/x86_64/Gresume.c b/src/x86_64/Gresume.c index 3625bbee..6967333f 100644 --- a/src/x86_64/Gresume.c +++ b/src/x86_64/Gresume.c @@ -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;