aboutsummaryrefslogtreecommitdiff
path: root/gdb/nat
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2022-05-20 14:35:57 +0100
committerJon Turney <jon.turney@dronecode.org.uk>2022-06-02 10:39:44 +0100
commitc9c157c7650a7570123869445e7dd331ecdd3317 (patch)
treedee0e3d0478d3bdfea78581a83bbb8a1c542d353 /gdb/nat
parent6a031255cf1842447a143849e720349eb00533d2 (diff)
downloadgdb-c9c157c7650a7570123869445e7dd331ecdd3317.zip
gdb-c9c157c7650a7570123869445e7dd331ecdd3317.tar.gz
gdb-c9c157c7650a7570123869445e7dd331ecdd3317.tar.bz2
Fix Cygwin build after fcab5839
Fix Cygwin build after fcab5839 ("Implement pid_to_exec_file for Windows in gdbserver"). That change moves code from gdb/windows-nat.c to gdb/nat/windows-nat.c, but doesn't add the required typedefs and includes for parts of that code under ifdef __CYGWIN__.
Diffstat (limited to 'gdb/nat')
-rw-r--r--gdb/nat/windows-nat.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/nat/windows-nat.c b/gdb/nat/windows-nat.c
index 71a18a0..f681801 100644
--- a/gdb/nat/windows-nat.c
+++ b/gdb/nat/windows-nat.c
@@ -21,8 +21,15 @@
#include "gdbsupport/common-debug.h"
#include "target/target.h"
-#ifdef __CYGWIN__
+#undef GetModuleFileNameEx
+
+#ifndef __CYGWIN__
+#define GetModuleFileNameEx GetModuleFileNameExA
+#else
+#include <sys/cygwin.h>
#define __USEWIDE
+typedef wchar_t cygwin_buf_t;
+#define GetModuleFileNameEx GetModuleFileNameExW
#endif
namespace windows_nat