diff options
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/ChangeLog | 4 | ||||
-rw-r--r-- | tapset/context.stp | 2 |
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 |