summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2006-11-20 22:09:01 +0000
committerfche <fche>2006-11-20 22:09:01 +0000
commit57153f81fcb9b49b04c9ee0140e402cdd9961568 (patch)
tree71f41289250a3a512538b45df9846e03d8e1a2ee
parent9745b5ff714d74543432788d0f609c2e578b6ca9 (diff)
downloadsystemtap-steved-57153f81fcb9b49b04c9ee0140e402cdd9961568.tar.gz
systemtap-steved-57153f81fcb9b49b04c9ee0140e402cdd9961568.tar.xz
systemtap-steved-57153f81fcb9b49b04c9ee0140e402cdd9961568.zip
2006-11-20 Frank Ch. Eigler <fche@elastic.org>
* context.stp (caller_addr): Declare return type.
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/context.stp2
2 files changed, 5 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 82a46e61..13db6112 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-20 Frank Ch. Eigler <fche@elastic.org>
+
+ * context.stp (caller_addr): Declare return type.
+
2006-11-07 Li Guanglei <guanglei@cn.ibm.com>
From Gui Jian <guij@cn.ibm.com>
diff --git a/tapset/context.stp b/tapset/context.stp
index c4927172..efb78659 100644
--- a/tapset/context.stp
+++ b/tapset/context.stp
@@ -173,7 +173,7 @@ function stack_unused:long () %{ /* pure */
# Return the address of the calling function. Works only for
# return probes at this time.
-function caller_addr () %{ /* pure */
+function caller_addr:long () %{ /* pure */
if (CONTEXT->pi)
THIS->__retvalue = (int64_t)(long)_stp_ret_addr_r(CONTEXT->pi);
else