From 62bb8441c5d73153d05ff4091d20c273cb36b94f Mon Sep 17 00:00:00 2001 From: Tony Arnold Date: Wed, 7 Aug 2024 19:06:11 +1000 Subject: [PATCH 1/2] Add include for missing ucontext64_t type --- Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.c b/Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.c index 222aa41bc3f..566c9eea1d6 100644 --- a/Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.c +++ b/Sources/SentryCrash/Recording/Tools/SentryCrashMachineContext.c @@ -38,6 +38,7 @@ #include "SentryAsyncSafeLog.h" #ifdef __arm64__ +#include # define UC_MCONTEXT uc_mcontext64 typedef ucontext64_t SignalUserContext; #else From be6d7c48ae103227d7ba95483c4bae06aad2eb92 Mon Sep 17 00:00:00 2001 From: Dhiogo Brustolin Date: Wed, 7 Aug 2024 11:44:13 +0200 Subject: [PATCH 2/2] Fix changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3827ca8eafc..5d29c1e8521 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ - Missing mach info for crash reports (#4230) - Crash reports not generated on visionOS (#4229) - Don’t force cast to `NSComparisonPredicate` in TERNARY operator (#4232) +- Missing '#include ' (#4244) ### Improvements