From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LE8JB-0000Cc-5D for qemu-devel@nongnu.org; Sat, 20 Dec 2008 15:20:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LE8J9-0000CJ-Ij for qemu-devel@nongnu.org; Sat, 20 Dec 2008 15:20:20 -0500 Received: from [199.232.76.173] (port=59234 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LE8J9-0000CG-Ce for qemu-devel@nongnu.org; Sat, 20 Dec 2008 15:20:19 -0500 Received: from soufre.accelance.net ([213.162.48.15]:61343) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LE8J8-00036k-VF for qemu-devel@nongnu.org; Sat, 20 Dec 2008 15:20:19 -0500 From: Lionel Landwerlin In-Reply-To: <20081220183326.GA10327@epbyminw8406h.minsk.epam.com> References: <1229171967.3898.59.camel@cocoduo.atr> <20081214181152.GC7343@epbyminw8406h.minsk.epam.com> <1229374901.4966.3.camel@cocoduo.atr> <20081215212430.GA21980@epbyminw8406h.minsk.epam.com> <1229797255.9563.2.camel@cocoduo.atr> <20081220183326.GA10327@epbyminw8406h.minsk.epam.com> Content-Type: text/plain Date: Sat, 20 Dec 2008 21:20:15 +0100 Message-Id: <1229804415.9563.6.camel@cocoduo.atr> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] More strace formatting for posix message queues syscalls Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: "Kirill A. Shutemov" More strace formatting for posix message queues syscalls Signed-off-by: Lionel Landwerlin --- linux-user/strace.list | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/linux-user/strace.list b/linux-user/strace.list index 45eb24d..3f688db 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -524,22 +524,22 @@ { TARGET_NR_mpx, "mpx" , NULL, NULL, NULL }, #endif #ifdef TARGET_NR_mq_getsetattr -{ TARGET_NR_mq_getsetattr, "mq_getsetattr" , NULL, NULL, NULL }, +{ TARGET_NR_mq_getsetattr, "mq_getsetattr" , "%s(%d,%p,%p)", NULL, NULL }, #endif #ifdef TARGET_NR_mq_notify -{ TARGET_NR_mq_notify, "mq_notify" , NULL, NULL, NULL }, +{ TARGET_NR_mq_notify, "mq_notify" , "%s(%d,%p)", NULL, NULL }, #endif #ifdef TARGET_NR_mq_open { TARGET_NR_mq_open, "mq_open" , "%s(\"/%s\",%#x,%#o,%p)", NULL, NULL }, #endif #ifdef TARGET_NR_mq_timedreceive -{ TARGET_NR_mq_timedreceive, "mq_timedreceive" , NULL, NULL, NULL }, +{ TARGET_NR_mq_timedreceive, "mq_timedreceive" , "%s(%d,%p,%d,%u,%p)", NULL, NULL }, #endif #ifdef TARGET_NR_mq_timedsend -{ TARGET_NR_mq_timedsend, "mq_timedsend" , NULL, NULL, NULL }, +{ TARGET_NR_mq_timedsend, "mq_timedsend" , "%s(%d,%p,%d,%u,%p)", NULL, NULL }, #endif #ifdef TARGET_NR_mq_unlink -{ TARGET_NR_mq_unlink, "mq_unlink" , NULL, NULL, NULL }, +{ TARGET_NR_mq_unlink, "mq_unlink" , "%s(%s)", NULL, NULL }, #endif #ifdef TARGET_NR_mremap { TARGET_NR_mremap, "mremap" , NULL, NULL, NULL }, -- 1.5.6.5