summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.context/backtrace.stp
diff options
context:
space:
mode:
authorhiramatu <hiramatu>2008-02-06 22:07:42 +0000
committerhiramatu <hiramatu>2008-02-06 22:07:42 +0000
commit47683be64546814f9bf7f48e62c916d7901e336e (patch)
tree1c4068f2f32134b00c1d202cca45532344506d43 /testsuite/systemtap.context/backtrace.stp
parent983aeb407de6b516a794d750d329b3780149ed4f (diff)
downloadsystemtap-steved-47683be64546814f9bf7f48e62c916d7901e336e.tar.gz
systemtap-steved-47683be64546814f9bf7f48e62c916d7901e336e.tar.xz
systemtap-steved-47683be64546814f9bf7f48e62c916d7901e336e.zip
2008-02-06 Masami Hiramatsu <mhiramat@redhat.com>
* stack-ia64.c (__stp_show_stack_sym): Skip printing symbol if (ip == REG_IP(regs)). 2008-02-06 Masami Hiramatsu <mhiramat@redhat.com> * systemtap.context/backtrace.tcl: Fixed regular expressions and Added new expression for return probe on ia64. * systemtap.context/backtrace.stp(print_all_trace_info): Added trace point output before calling print_stack().
Diffstat (limited to 'testsuite/systemtap.context/backtrace.stp')
-rw-r--r--testsuite/systemtap.context/backtrace.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.context/backtrace.stp b/testsuite/systemtap.context/backtrace.stp
index 73781371..c14d071c 100644
--- a/testsuite/systemtap.context/backtrace.stp
+++ b/testsuite/systemtap.context/backtrace.stp
@@ -4,7 +4,7 @@ function print_all_trace_info(point:string) {
print("--------\n")
bt = backtrace()
printf("the %s stack is %s\n", point, bt)
- print("--------\n")
+ printf("--<%s>--\n", point)
print_stack(bt);
print("--------\n")
}