qemu-devel
[Top][All Lists]
Advanced

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

[PATCH 17/32] include: move qemu_write_full() declaration to osdep.h


From: marcandre . lureau
Subject: [PATCH 17/32] include: move qemu_write_full() declaration to osdep.h
Date: Wed, 23 Mar 2022 19:57:28 +0400

From: Marc-André Lureau <marcandre.lureau@redhat.com>

Closer to other IO functions.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 include/qemu-common.h | 3 ---
 include/qemu/osdep.h  | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/qemu-common.h b/include/qemu-common.h
index db8b03be51f3..c6f3ed94bc7e 100644
--- a/include/qemu-common.h
+++ b/include/qemu-common.h
@@ -24,9 +24,6 @@
 int qemu_main(int argc, char **argv, char **envp);
 #endif
 
-ssize_t qemu_write_full(int fd, const void *buf, size_t count)
-    G_GNUC_WARN_UNUSED_RESULT;
-
 #ifndef _WIN32
 int qemu_pipe(int pipefd[2]);
 #endif
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 489a5d1aad5f..259436ff5371 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -527,6 +527,9 @@ static inline void qemu_timersub(const struct timeval *val1,
 #define qemu_timersub timersub
 #endif
 
+ssize_t qemu_write_full(int fd, const void *buf, size_t count)
+    G_GNUC_WARN_UNUSED_RESULT;
+
 void qemu_set_cloexec(int fd);
 
 void fips_set_state(bool requested);
-- 
2.35.1.273.ge6ebfd0e8cbb




reply via email to

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