All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] semihosting: add O_BINARY flag in host_open for NT compatibility
@ 2023-01-05 21:19 Evgeny Iakovlev
  2023-01-06  7:29 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 5+ messages in thread
From: Evgeny Iakovlev @ 2023-01-05 21:19 UTC (permalink / raw)
  To: qemu-devel; +Cc: alex.bennee

Windows open(2) implementations opens files in text mode by default and
needs a Windows-only O_BINARY flag to open files as binary. Qemu already
knows about that flag in osdep.h, so we can just add it to the
host_flags for better compatibility when running qemu on Windows.

Signed-off-by: Evgeny Iakovlev <eiakovlev@linux.microsoft.com>
---
 semihosting/syscalls.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/semihosting/syscalls.c b/semihosting/syscalls.c
index 508a0ad88c..00f77507e5 100644
--- a/semihosting/syscalls.c
+++ b/semihosting/syscalls.c
@@ -278,6 +278,8 @@ static void host_open(CPUState *cs, gdb_syscall_complete_cb complete,
         host_flags |= O_EXCL;
     }
 
+    host_flags |= O_BINARY;
+
     ret = open(p, host_flags, mode);
     if (ret < 0) {
         complete(cs, -1, errno);
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-01-06 10:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-05 21:19 [PATCH] semihosting: add O_BINARY flag in host_open for NT compatibility Evgeny Iakovlev
2023-01-06  7:29 ` Philippe Mathieu-Daudé
2023-01-06  9:48   ` Bin Meng
2023-01-06 10:21     ` Evgeny Iakovlev
2023-01-06 10:27     ` Evgeny Iakovlev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.