diff options
author | fche <fche> | 2006-11-20 22:09:01 +0000 |
---|---|---|
committer | fche <fche> | 2006-11-20 22:09:01 +0000 |
commit | 57153f81fcb9b49b04c9ee0140e402cdd9961568 (patch) | |
tree | 71f41289250a3a512538b45df9846e03d8e1a2ee /tapset/context.stp | |
parent | 9745b5ff714d74543432788d0f609c2e578b6ca9 (diff) | |
download | systemtap-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.
Diffstat (limited to 'tapset/context.stp')
-rw-r--r-- | tapset/context.stp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |