You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Allocates memory until the process runs out and crashes.
272
237
/// </summary>
@@ -346,8 +311,7 @@ public Dictionary<CrashType, string> GetCrashTypeDescriptions()
346
311
[CrashType.StackOverflow]="Triggers StackOverflowException via infinite recursion. Cannot be caught. Creates interesting stack traces for analysis.",
347
312
[CrashType.UnhandledException]="Throws an unhandled exception on a background thread, demonstrating the importance of proper exception handling.",
348
313
[CrashType.AccessViolation]="Writes to invalid memory (null pointer). Demonstrates native-level crashes common in P/Invoke or unsafe code bugs.",
349
-
[CrashType.OutOfMemory]="Allocates memory until the process crashes. Useful for learning memory dump analysis techniques.",
350
-
[CrashType.NativeCrash]="Uses RtlFailFast to bypass ALL exception handlers including ANCM. Guarantees WER capture - use this if other types aren't detected by Azure Crash Monitoring."
314
+
[CrashType.OutOfMemory]="Allocates memory until the process crashes. Useful for learning memory dump analysis techniques."
0 commit comments