diff options
author | Dave Brolley <brolley@redhat.com> | 2009-12-21 12:42:11 -0500 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-12-21 12:42:11 -0500 |
commit | 25a0404570724499bcdf1ebfd9f03084c2e00137 (patch) | |
tree | f9824f847b407790ab10116c2ebcc7e664d53253 /tapset/context-symbols.stp | |
parent | 08098abb6b206dc3aea984f18b5054d34e015185 (diff) | |
parent | c6fcc4c1ca5f222cf90bf3968e34a10f09b30be4 (diff) | |
download | systemtap-steved-25a0404570724499bcdf1ebfd9f03084c2e00137.tar.gz systemtap-steved-25a0404570724499bcdf1ebfd9f03084c2e00137.tar.xz systemtap-steved-25a0404570724499bcdf1ebfd9f03084c2e00137.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'tapset/context-symbols.stp')
-rw-r--r-- | tapset/context-symbols.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tapset/context-symbols.stp b/tapset/context-symbols.stp index 6cd4dcbb..38900196 100644 --- a/tapset/context-symbols.stp +++ b/tapset/context-symbols.stp @@ -91,7 +91,7 @@ function probemod:string () %{ /* pure */ *dst = 0; } else if (CONTEXT->regs) { struct _stp_module *m; - m = _stp_mod_sec_lookup (REG_IP(CONTEXT->regs), current, NULL); + m = _stp_mod_sec_lookup (REG_IP(CONTEXT->regs), current, NULL, NULL); if (m && m->name) strlcpy (THIS->__retvalue, m->name, MAXSTRINGLEN); else @@ -111,7 +111,7 @@ function probemod:string () %{ /* pure */ */ function modname:string (addr: long) %{ /* pure */ struct _stp_module *m; - m = _stp_mod_sec_lookup (THIS->addr, current, NULL); + m = _stp_mod_sec_lookup (THIS->addr, current, NULL, NULL); if (m && m->name) strlcpy (THIS->__retvalue, m->name, MAXSTRINGLEN); else |