about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-04-12 09:45:42 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-04-12 09:45:42 +0200
commit0fbf5f18961db5bb47dee5ded599c7a31958f939 (patch)
treee1e91eb9a1e33cf7c7ebd8554e713caa1246d7f4 /src/include
parent592a2a75bb1af3f167a274b2c5a27dff3a29447f (diff)
downloadbox64-0fbf5f18961db5bb47dee5ded599c7a31958f939.tar.gz
box64-0fbf5f18961db5bb47dee5ded599c7a31958f939.zip
[ANDROID] Another change on some internal structure for Android
Diffstat (limited to 'src/include')
-rw-r--r--src/include/myalign.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/myalign.h b/src/include/myalign.h
index ec7c6e70..54184a88 100644
--- a/src/include/myalign.h
+++ b/src/include/myalign.h
@@ -239,7 +239,10 @@ typedef struct __jmp_buf_tag_s {
     jump_buff_x64_t __jmpbuf;
     int              __mask_was_saved;
     #ifdef ANDROID
-    sigset_t         __saved_mask;
+    union {
+      sigset_t         __saved_mask;
+      sigset64_t         __saved_mask64;
+    };
     #else
     __sigset_t       __saved_mask;
     #endif