qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 6/8] char: unix: For files that are nonblocking, re


From: Amit Shah
Subject: [Qemu-devel] [PATCH 6/8] char: unix: For files that are nonblocking, report -EAGAIN to calling functions
Date: Thu, 8 Apr 2010 02:32:34 +0530

If the chardev we're writing to is nonblocking, just report -EAGAIN to
the caller so that the caller can take any further action if it so
wishes.

Signed-off-by: Amit Shah <address@hidden>
---
 qemu-char.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/qemu-char.c b/qemu-char.c
index 208466f..57e9af3 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -497,11 +497,23 @@ int send_all(int fd, const void *buf, int len1)
 static int unix_write(int fd, const uint8_t *buf, int len1)
 {
     int ret, len;
+    int flags;
+    bool nonblock;
+
+    flags = fcntl(fd, F_GETFL);
+    if (flags == -1) {
+        flags = 0;
+    }
+
+    nonblock = flags & O_NONBLOCK;
 
     len = len1;
     while (len > 0) {
         ret = write(fd, buf, len);
         if (ret < 0) {
+            if (errno == EAGAIN && nonblock) {
+                return -EAGAIN;
+            }
             if (errno != EINTR && errno != EAGAIN) {
                 if (len1 - len) {
                     return len1 - len;
-- 
1.6.2.5





reply via email to

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