summaryrefslogtreecommitdiffstats
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
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)
-rw-r--r--stapfuncs.5.in7
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/s390x/registers.stp2
3 files changed, 10 insertions, 3 deletions
diff --git a/stapfuncs.5.in b/stapfuncs.5.in
index acfb42f9..0322369e 100644
--- a/stapfuncs.5.in
+++ b/stapfuncs.5.in
@@ -375,9 +375,12 @@ eax, ebp, ebx, ecx, edx, edi, edx, eip, esi, esp, flags/eflags, orig_eax;
segment registers: xcs/cs, xss/ss.
For powerpc, the following names are recognized:
-r1, r2... r31, nip, msr, orig_gpr3, ctr, link, xer, ccr, softe, trap,
+r0, r1, ... r31, nip, msr, orig_gpr3, ctr, link, xer, ccr, softe, trap,
dar, dsisr, result.
+For s390x, the following names are recognized:
+r0, r1, ... r15, args, psw.mask, psw.addr, orig_gpr2, ilc, trap.
+
.TP
u_register:long (name:string)
Same as register(name), except that
@@ -460,7 +463,7 @@ The probed function was built with the gcc \-mregparm=n option.
(The i386 kernel is built with \-mregparm=3, so systemtap considers
regparm(3) the default for kernel functions on that architecture.)
-For some architectures, the *_arg functions may reject unusally high
+For some architectures, the *_arg functions may reject unusually high
values of n.
.SS QUEUE_STATS
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 {