Skip to content

Commit 1a85d98

Browse files
fix: disambiguate GC.TryStartNoGCRegion cref to (long, bool) overload
Agent-Logs-Url: https://github.com/winnerspiros/osu/sessions/001fc4ae-2f98-4a79-9bc6-7284b03016bf Co-authored-by: winnerspiros <1675249+winnerspiros@users.noreply.github.com>
1 parent aa3fa5c commit 1a85d98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

osu.Android/Performance/AndroidHighPerformanceSessionManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class AndroidHighPerformanceSessionManager : IHighPerformanceSessionManag
3030
private static bool gcLatencyModeSupported = true;
3131

3232
/// <summary>
33-
/// One-shot disable for <see cref="GC.TryStartNoGCRegion"/>.
33+
/// One-shot disable for <see cref="GC.TryStartNoGCRegion(long, bool)"/>.
3434
/// The API is not implemented on Mono for Android and will throw
3535
/// <see cref="NotImplementedException"/> or <see cref="PlatformNotSupportedException"/>
3636
/// on older runtimes. We disable it permanently on the first failure.
@@ -41,7 +41,7 @@ public class AndroidHighPerformanceSessionManager : IHighPerformanceSessionManag
4141
private bool noGCRegionActive;
4242

4343
/// <summary>
44-
/// Heap budget in bytes for <see cref="GC.TryStartNoGCRegion"/>.
44+
/// Heap budget in bytes for <see cref="GC.TryStartNoGCRegion(long, bool)"/>.
4545
/// 64 MB covers typical per-map allocation rates (~4–8 MB/s × ~8 s per map load).
4646
/// When this budget is exhausted the runtime silently reverts to normal GC, so
4747
/// the value acts as an upper-bound guarantee rather than a hard limit.

0 commit comments

Comments
 (0)