Biswapriyo Nath : include: Add structure padding for aarch64 in dbghelp.h.

Alexandre Julliard julliard at winehq.org
Wed Jul 21 16:04:30 CDT 2021


Module: wine
Branch: master
Commit: 8647f7baa2ad2a33446b17f59f141f218dd5cb16
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8647f7baa2ad2a33446b17f59f141f218dd5cb16

Author: Biswapriyo Nath <nathbappai at gmail.com>
Date:   Wed Jul 21 14:41:57 2021 +0530

include: Add structure padding for aarch64 in dbghelp.h.

Signed-off-by: Biswapriyo Nath <nathbappai at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/dbghelp.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/dbghelp.h b/include/dbghelp.h
index 303c0109d1f..bf235c7f97a 100644
--- a/include/dbghelp.h
+++ b/include/dbghelp.h
@@ -587,6 +587,9 @@ typedef struct _MINIDUMP_THREAD_CALLBACK
 {
     ULONG                       ThreadId;
     HANDLE                      ThreadHandle;
+#if defined(__aarch64__)
+    ULONG                       Pad;
+#endif
     CONTEXT                     Context;
     ULONG                       SizeOfContext;
     ULONG64                     StackBase;
@@ -597,6 +600,9 @@ typedef struct _MINIDUMP_THREAD_EX_CALLBACK
 {
     ULONG                       ThreadId;
     HANDLE                      ThreadHandle;
+#if defined(__aarch64__)
+    ULONG                       Pad;
+#endif
     CONTEXT                     Context;
     ULONG                       SizeOfContext;
     ULONG64                     StackBase;




More information about the wine-cvs mailing list