diff --git a/docs/platforms/unreal/configuration/app-hangs/index.mdx b/docs/platforms/unreal/configuration/app-hangs/index.mdx index 79b616889e74dd..ce9a14b625da1f 100644 --- a/docs/platforms/unreal/configuration/app-hangs/index.mdx +++ b/docs/platforms/unreal/configuration/app-hangs/index.mdx @@ -94,3 +94,4 @@ public: - **No early-startup detection**: Hangs that occur before `FEngineLoop::Tick()` starts (e.g. during `GameInstance::Init()`) are not detected, because threads must have sent at least one heartbeat before they can be monitored. - **Requires engine configuration**: The `HangDuration` setting in `[Core.System]` must be set to a value greater than `0`. Without it, the engine's heartbeat monitor thread doesn't run. - **One thread at a time**: If multiple threads become stuck simultaneously, only one hang is reported per episode. The engine's `FThreadHeartBeat` reports one stuck thread at a time, so additional stuck threads are only detected after the first one recovers. +- **Not supported on macOS with native backend**: Hang tracking is not available when using the native backend on macOS. diff --git a/docs/platforms/unreal/configuration/native-backend/index.mdx b/docs/platforms/unreal/configuration/native-backend/index.mdx index f84d213e7663ae..7460e01ebe29f1 100644 --- a/docs/platforms/unreal/configuration/native-backend/index.mdx +++ b/docs/platforms/unreal/configuration/native-backend/index.mdx @@ -1,10 +1,10 @@ --- title: Native Backend sidebar_order: 12 -description: "Learn how to use the experimental native crash backend as an alternative to Crashpad on Windows and Linux." +description: "Learn how to use the experimental native crash backend as an alternative to the default backend on Windows, Linux, and macOS." --- -The Sentry Unreal SDK uses Crashpad as the default crash reporting backend on Windows and Linux. As an alternative, you can enable the experimental native backend, which uses a different crash handling architecture built into the sentry-native SDK. +The Sentry Unreal SDK uses Crashpad as the default crash reporting backend on Windows and Linux, and the sentry-cocoa SDK on macOS. As an alternative, you can enable the experimental native backend, which uses a different crash handling architecture built into the sentry-native SDK. @@ -14,7 +14,7 @@ The native backend is experimental and under active development. It may have inc -This feature is supported on Windows and Linux only. +This feature is supported on Windows, Linux, and macOS. diff --git a/docs/platforms/unreal/configuration/options.mdx b/docs/platforms/unreal/configuration/options.mdx index 0796839880bcca..25d38b9e42d7a6 100644 --- a/docs/platforms/unreal/configuration/options.mdx +++ b/docs/platforms/unreal/configuration/options.mdx @@ -169,7 +169,7 @@ On Windows, capturing GPU crashes requires [modifying the Unreal Engine source c -When enabled, the SDK uses the experimental native backend for crash reporting instead of the default Crashpad backend on Windows and Linux. This option requires a rebuild after changing. +When enabled, the SDK uses the experimental native backend for crash reporting instead of the default backend (Crashpad on Windows/Linux, sentry-cocoa on macOS). This option requires a rebuild after changing. See Native Backend for details and additional configuration options.