qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT fbd5de9] F_DUPFD_CLOEXEC is not universally avail


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT fbd5de9] F_DUPFD_CLOEXEC is not universally available
Date: Thu, 10 Sep 2009 16:28:56 -0000

From: malc <address@hidden>

The same issue (and the same patch to the byte) was experienced/proposed
by Vince Weaver.

Signed-off-by: malc <address@hidden>

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 25b95ea..b42567c 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -3685,8 +3685,10 @@ static int target_to_host_fcntl_cmd(int cmd)
             return F_SETLEASE;
         case TARGET_F_GETLEASE:
             return F_GETLEASE;
+#ifdef F_DUPFD_CLOEXEC
         case TARGET_F_DUPFD_CLOEXEC:
             return F_DUPFD_CLOEXEC;
+#endif
         case TARGET_F_NOTIFY:
             return F_NOTIFY;
        default:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]