This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix typo in mq_timedreceive probe point.


* tapset/syscalls.stp: Rename abs_timout_uaddr to abs_timeout_uaddr.
---
 tapset/syscalls.stp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp
index a215dc1..0eaf84c 100644
--- a/tapset/syscalls.stp
+++ b/tapset/syscalls.stp
@@ -2976,7 +2976,7 @@ probe syscall.mq_timedreceive =
 	msg_ptr_uaddr = $u_msg_ptr
 	msg_len = $msg_len
 	msg_prio_uaddr = $u_msg_prio
-	abs_timout_uaddr = $u_abs_timeout
+	abs_timeout_uaddr = $u_abs_timeout
 	argstr = sprintf("%d, %p, %d, %p, %p", $mqdes, $u_msg_ptr, $msg_len,
 			$u_msg_prio, $u_abs_timeout)
 }
-- 
1.5.6.5


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]