summaryrefslogtreecommitdiffstats
path: root/tapset
diff options
context:
space:
mode:
authorJim Keniston <jkenisto@us.ibm.com>2008-11-19 13:51:51 -0800
committerJim Keniston <jkenisto@us.ibm.com>2008-11-19 13:51:51 -0800
commit50a0afbed803ab3e5eb1660e345ecc1d3fecc1f0 (patch)
tree20830df06561abfa84902c7eab796c6e7bac3a6c /tapset
parent31b66efe4089b417aad835a5b82d7a5c14ca6b05 (diff)
downloadsystemtap-steved-50a0afbed803ab3e5eb1660e345ecc1d3fecc1f0.tar.gz
systemtap-steved-50a0afbed803ab3e5eb1660e345ecc1d3fecc1f0.tar.xz
systemtap-steved-50a0afbed803ab3e5eb1660e345ecc1d3fecc1f0.zip
tapset/s390/registers.stp: fixed a typo, updated stapfuncs(5)
Diffstat (limited to 'tapset')
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/s390x/registers.stp2
2 files changed, 5 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 377a7785..b63b1acb 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,7 @@
+2008-11-19 Jim Keniston <jkenisto@us.ibm.com>
+
+ * s390x/registers.stp: Fixed typo.
+
2008-11-19 Ananth Mavinakayanahalli <ananth@us.ibm.com> and Jim Keniston <jkenisto@us.ibm.com>
* s390x/registers.stp: Added
diff --git a/tapset/s390x/registers.stp b/tapset/s390x/registers.stp
index 48c5d59b..84e28348 100644
--- a/tapset/s390x/registers.stp
+++ b/tapset/s390x/registers.stp
@@ -57,7 +57,7 @@ function _stp_probing_kernel: long () %{ /* pure */
function _stp_get_register_by_offset:long (offset:long) %{ /* pure */
long value;
- if (offset <= 152)
+ if (THIS->offset <= 152)
memcpy(&value, ((char *)CONTEXT->regs) + THIS->offset,
sizeof(value));
else {