From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LE6Rj-0000sA-Lv for qemu-devel@nongnu.org; Sat, 20 Dec 2008 13:21:03 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LE6Rh-0000rs-HN for qemu-devel@nongnu.org; Sat, 20 Dec 2008 13:21:02 -0500 Received: from [199.232.76.173] (port=49095 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LE6Rh-0000rp-Aq for qemu-devel@nongnu.org; Sat, 20 Dec 2008 13:21:01 -0500 Received: from soufre.accelance.net ([213.162.48.15]:52249) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LE6Rg-0002tk-V8 for qemu-devel@nongnu.org; Sat, 20 Dec 2008 13:21:01 -0500 Subject: Re: [Qemu-devel] [linux-user] Added posix message queue syscalls except mq_notify From: Lionel Landwerlin In-Reply-To: <20081215212430.GA21980@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> Content-Type: text/plain Date: Sat, 20 Dec 2008 19:20:55 +0100 Message-Id: <1229797255.9563.2.camel@cocoduo.atr> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit 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" Here another patch to format mq_open strace arguments (very similar to the open format) : >>From faec50221490c953c229f1614a37f7d45bfe0ec7 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Sat, 20 Dec 2008 19:15:58 +0100 Subject: [PATCH] Format mq_open strace arguments Signed-off-by: Lionel Landwerlin --- linux-user/strace.list | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/linux-user/strace.list b/linux-user/strace.list index 09a801f..45eb24d 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -530,7 +530,7 @@ { TARGET_NR_mq_notify, "mq_notify" , NULL, NULL, NULL }, #endif #ifdef TARGET_NR_mq_open -{ TARGET_NR_mq_open, "mq_open" , NULL, NULL, NULL }, +{ 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 }, -- 1.5.6.5