]> sourceware.org Git - systemtap.git/commitdiff
2007-08-24 Zhaolei <zhaolei@cn.fujitsu.com>
authorzhaolei <zhaolei>
Fri, 24 Aug 2007 00:42:16 +0000 (00:42 +0000)
committerzhaolei <zhaolei>
Fri, 24 Aug 2007 00:42:16 +0000 (00:42 +0000)
* syscalls2.stp(send): Add len argument into argstr.

tapset/ChangeLog
tapset/syscalls2.stp

index e7bfcd32bb564a18f152491c19c97574c8e39c07..795a7ed2f42fae78c5db30603580d1e0c199b64f 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-24  Zhaolei  <zhaolei@cn.fujitsu.com>
+
+       * syscalls2.stp(send): Add len argument into argstr.
+
 2007-08-09  William Cohen  <wcohen@redhat.com>
 
        * syscalls2.stp (compat_sys_utimensat): Correct function arg.
index 739507839d92bf9947b1e9fe4264a9b749c587f2..7764d5a325a79df53346dff7a5c728a43cb4ab78 100644 (file)
@@ -1371,7 +1371,7 @@ probe syscall.send = kernel.function("sys_send") ? {
        len = $len
        flags = $flags
        flags_str = _sendflags_str($flags)
-       argstr = sprintf("%d, %p, %s", $fd, $buff, flags_str)
+       argstr = sprintf("%d, %p, %d, %s", $fd, $buff, $len, flags_str)
 }
 probe syscall.send.return = kernel.function("sys_send").return ? {
        name = "send"
This page took 0.03309 seconds and 5 git commands to generate.