Test putting flags in old order

This commit is contained in:
Martin 2024-12-10 14:48:13 +01:00 committed by GitHub
parent fb65993ee4
commit ed21163d46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -142,8 +142,8 @@ void NativeThread::Initialize() {
const stack_t sig_stack = {
ss_sp: sig_stack_ptr,
ss_flags: 0,
ss_size: sig_stack_size,
ss_flags: 0,
};
ASSERT_MSG(sigaltstack(&sig_stack, nullptr) == 0, "Failed to set signal stack: {}", errno);
#endif