diff --git a/winsup/cygwin/local_includes/cygtls.h b/winsup/cygwin/local_includes/cygtls.h index 018a59946..61c4cbeef 100644 --- a/winsup/cygwin/local_includes/cygtls.h +++ b/winsup/cygwin/local_includes/cygtls.h @@ -178,11 +178,14 @@ public: /* Do NOT remove this public: line, it's a marker for gentls_offsets. */ siginfo_t *sigwait_info; HANDLE signal_arrived; bool will_wait_for_signal; +#if 0 long __align; /* Needed to align context to 16 byte. */ +#endif /* context MUST be aligned to 16 byte, otherwise RtlCaptureContext fails. If you prepend cygtls members here, make sure context stays 16 byte - aligned. */ - ucontext_t context; + aligned. The gentls_offsets script checks for that now and fails + if the alignment is wrong. */ + ucontext_t __attribute__((__aligned__(__alignof__(long double)))) context; DWORD thread_id; siginfo_t infodata; struct pthread *tid; diff --git a/winsup/cygwin/scripts/gentls_offsets b/winsup/cygwin/scripts/gentls_offsets index 0adb702a3..040b5de6b 100755 --- a/winsup/cygwin/scripts/gentls_offsets +++ b/winsup/cygwin/scripts/gentls_offsets @@ -98,3 +98,12 @@ gawk -v start_offset="$start_offset" '\ } } ' ${tmp_file} > "${output_file}" +# Check if the `context' member is 16 bytes aligned. Delete output_file +# and bail out with error if not. +MOD=$(awk '/_cygtls.context_p/{ print $3 % 16; }' "${output_file}") +if [ $MOD -ne 0 ] +then + echo "Error: _cygtls.context member is not 16 bytes aligned!" + rm "${output_file}" + exit 1 +fi