]> sourceware.org Git - systemtap.git/commitdiff
tapset/s390/registers.stp: fixed a typo, updated stapfuncs(5)
authorJim Keniston <jkenisto@us.ibm.com>
Wed, 19 Nov 2008 21:51:51 +0000 (13:51 -0800)
committerJim Keniston <jkenisto@us.ibm.com>
Wed, 19 Nov 2008 21:51:51 +0000 (13:51 -0800)
stapfuncs.5.in
tapset/ChangeLog
tapset/s390x/registers.stp

index acfb42f915dc64941f179dc8b0f5cc9e020c4272..0322369e56b0f3109bf480b7abc233d5fe75daec 100644 (file)
@@ -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
index 377a77859043cb2fa710d6526ad97f43830ba5b2..b63b1acbcb8fa7f80806fa683190f0633cb569cc 100644 (file)
@@ -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
index 48c5d59bdbdbda6727c4db701cbbb8169694cf2c..84e28348e2d573ced7c75bb30f52bede2dbd4ac8 100644 (file)
@@ -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 {
This page took 0.032378 seconds and 5 git commands to generate.