[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [linux-user] Added posix message queue syscalls except
From: |
Lionel Landwerlin |
Subject: |
Re: [Qemu-devel] [linux-user] Added posix message queue syscalls except mq_notify |
Date: |
Sat, 20 Dec 2008 19:20:55 +0100 |
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 <address@hidden>
Date: Sat, 20 Dec 2008 19:15:58 +0100
Subject: [PATCH] Format mq_open strace arguments
Signed-off-by: Lionel Landwerlin <address@hidden>
---
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