]> git.proxmox.com Git - qemu.git/blobdiff - cutils.c
split out qemu-timer.c
[qemu.git] / cutils.c
index 2365e68d9d3896107d7d0ca87856d6fa0358e98d..036ae3ce317805089ff772818ee746402989923b 100644 (file)
--- a/cutils.c
+++ b/cutils.c
@@ -233,3 +233,21 @@ void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count)
         count -= copy;
     }
 }
+
+#ifndef _WIN32
+/* Sets a specific flag */
+int fcntl_setfl(int fd, int flag)
+{
+    int flags;
+
+    flags = fcntl(fd, F_GETFL);
+    if (flags == -1)
+        return -errno;
+
+    if (fcntl(fd, F_SETFL, flags | flag) == -1)
+        return -errno;
+
+    return 0;
+}
+#endif
+