Skip to content

Commit

Permalink
Merge pull request #1680 from bugsnag/PLAT-12402-os_proc_available_me…
Browse files Browse the repository at this point in the history
…mory

[Plat-12402] os_proc_available_memory on Mac Catalyst
  • Loading branch information
kstenerud authored Jul 17, 2024
2 parents 42ec93f + 37d6e50 commit 7099d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bugsnag/Helpers/BSGRunContext.m
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ static void UpdateTaskMemory(void) {
setMemoryUsage(footprint, task_vm.limit_bytes_remaining);
} else {
#if !TARGET_OS_OSX
if (@available(iOS 13.0, tvOS 13.0, watchOS 6.0, *)) {
if (@available(iOS 13.0, tvOS 13.0, watchOS 6.0, macCatalyst 13.1, *)) {
setMemoryUsage(footprint, os_proc_available_memory());
}
#endif
Expand Down

0 comments on commit 7099d0f

Please sign in to comment.