-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
net9.0, coreclr.dll exception code: 0xc0000602 #110099
Comments
0xC0000602 is STATUS_FAIL_FAST_EXCEPTION, probably by unhandled exception. Is there any stack trace information? |
net9.0, an error occurs on some customers' win10 and win11 systems, while net8.0 and below versions run normally. Even the simplest net9.0 application will have this error on the system with the error. It runs normally on my PC, so there is no trace information. Thank you very much for your reply |
We have seen issues with similar symptoms caused by SentinelOne antivirus software. Could you please check whether the systems where this occurs happen to have SentinelOne software installed? |
Tagging subscribers to this area: @mangod9 |
The particular antivirus software is unlikely to be popular in China market. |
SentinelOne is not installed. |
SentinelOne is not installed. There is no dump. In order not to affect the customer's normal work, it is returned to net8.0. It is very inconvenient to debug in the customer's system. Only when other customers make mistakes, debug without affecting their work. Thanks for your reply. |
https://learn.microsoft.com/windows/win32/wer/collecting-user-mode-dumps has instructions for enabling automatic crash dump collection. Could you please try to collect the crash dump of the failure? I am sorry it is not possible to diagnose the issue from the information provided so far. |
This issue has been marked |
Description
Application Name: hcmanagement.exe
• Version: 2.1.0.10
• Timestamp: 0x66f10000
Faulting Module: coreclr.dll
• Module Version: 9.0.24.52809
• Module Timestamp: 0x672049fc
Exception Code: 0xC0000602
Fault Offset: 0x000000000032A356
Process ID: 0x28C8
Application Start Time: 0x01DB3CB3386587E4
Application Path: C:\青山长源软件\青山长源造价系统\hcmanagement.exe
Module Path: C:\Program Files\dotnet\shared\Microsoft.NETCore.App\9.0.0\coreclr.dll
Report ID: 7596c246-d81b-4054-9e57-de74abc50f1d
Reproduction Steps
using System;
using System.IO;
using System.Reflection;
using System.Runtime.Loader;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace hcmanagement
{
static class Program
{
///
/// 应用程序的主入口点。
///
[STAThread]
static void Main()
{
}
Expected behavior
In the original net8.0 and below versions, it runs normally
Actual behavior
Under net9.0, errors occur under some win10 and win11 systems
Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response
The text was updated successfully, but these errors were encountered: