[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 11/25] osdep: file locking functions are not available on Win3
From: |
Yonggang Luo |
Subject: |
[PATCH v7 11/25] osdep: file locking functions are not available on Win32 |
Date: |
Thu, 10 Sep 2020 18:30:45 +0800 |
int qemu_lock_fd(int fd, int64_t start, int64_t len, bool exclusive);
int qemu_unlock_fd(int fd, int64_t start, int64_t len);
int qemu_lock_fd_test(int fd, int64_t start, int64_t len, bool exclusive);
bool qemu_has_ofd_lock(void);
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
---
include/qemu/osdep.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 412962d91a..e80fddd1e8 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -502,11 +502,11 @@ int qemu_close(int fd);
int qemu_unlink(const char *name);
#ifndef _WIN32
int qemu_dup(int fd);
-#endif
int qemu_lock_fd(int fd, int64_t start, int64_t len, bool exclusive);
int qemu_unlock_fd(int fd, int64_t start, int64_t len);
int qemu_lock_fd_test(int fd, int64_t start, int64_t len, bool exclusive);
bool qemu_has_ofd_lock(void);
+#endif
#if defined(__HAIKU__) && defined(__i386__)
#define FMT_pid "%ld"
--
2.28.0.windows.1
- [PATCH v7 01/25] file-win32: Fix "locking" option, (continued)
- [PATCH v7 01/25] file-win32: Fix "locking" option, Yonggang Luo, 2020/09/10
- [PATCH v7 02/25] rcu: Implement drain_call_rcu, Yonggang Luo, 2020/09/10
- [PATCH v7 03/25] block: Fixes nfs compiling error on msys2/mingw, Yonggang Luo, 2020/09/10
- [PATCH v7 04/25] ci: fixes msys2 build by upgrading capstone to 4.0.2, Yonggang Luo, 2020/09/10
- [PATCH v7 05/25] configure: Fixes ncursesw detection under msys2/mingw and enable curses, Yonggang Luo, 2020/09/10
- [PATCH v7 06/25] win32: Simplify gmtime_r detection direct base on _POSIX_THREAD_SAFE_FUNCTIONS., Yonggang Luo, 2020/09/10
- [PATCH v7 07/25] curses: Fixes curses compiling errors., Yonggang Luo, 2020/09/10
- [PATCH v7 08/25] tests: disable /char/stdio/* tests in test-char.c on win32, Yonggang Luo, 2020/09/10
- [PATCH v7 09/25] tests: Fixes test-replication.c on msys2/mingw., Yonggang Luo, 2020/09/10
- [PATCH v7 10/25] tests: test-replication disable /replication/secondary/* on msys2/mingw., Yonggang Luo, 2020/09/10
- [PATCH v7 11/25] osdep: file locking functions are not available on Win32,
Yonggang Luo <=
- [PATCH v7 12/25] meson: Use -b to ignore CR vs. CR-LF issues on Windows, Yonggang Luo, 2020/09/10
- [PATCH v7 13/25] gcrypt: test_tls_psk_init should write binary file instead text file., Yonggang Luo, 2020/09/10
- [PATCH v7 14/25] tests: Enable crypto tests under msys2/mingw, Yonggang Luo, 2020/09/10
- [PATCH v7 15/25] meson: remove empty else and duplicated gio deps, Yonggang Luo, 2020/09/10
- [PATCH v7 16/25] vmstate: Fixes test-vmstate.c on msys2/mingw, Yonggang Luo, 2020/09/10