|
|
@@ -46,27 +46,27 @@ _NOINLINE void JavascriptDispatch_OOM_fatal_error(
|
|
|
ReportFatalException(context, E_OUTOFMEMORY, JavascriptDispatch_OUTOFMEMORY, scenario);
|
|
|
};
|
|
|
|
|
|
-_NOINLINE void CustomHeap_BadPageState_fatal_error(
|
|
|
+_NOINLINE void CustomHeap_BadPageState_unrecoverable_error(
|
|
|
__in ULONG_PTR context)
|
|
|
{
|
|
|
int scenario = 1;
|
|
|
ReportFatalException(context, E_UNEXPECTED, CustomHeap_MEMORYCORRUPTION, scenario);
|
|
|
};
|
|
|
|
|
|
-_NOINLINE void MarkStack_OOM_fatal_error()
|
|
|
+_NOINLINE void MarkStack_OOM_unrecoverable_error()
|
|
|
{
|
|
|
int scenario = 1;
|
|
|
ReportFatalException(NULL, E_OUTOFMEMORY, MarkStack_OUTOFMEMORY, scenario);
|
|
|
};
|
|
|
|
|
|
-_NOINLINE void Amd64StackWalkerOutOfContexts_fatal_error(
|
|
|
+_NOINLINE void Amd64StackWalkerOutOfContexts_unrecoverable_error(
|
|
|
__in ULONG_PTR context)
|
|
|
{
|
|
|
int scenario = 1;
|
|
|
ReportFatalException(context, E_UNEXPECTED, Fatal_Amd64StackWalkerOutOfContexts, scenario);
|
|
|
}
|
|
|
|
|
|
-_NOINLINE void FailedToBox_OOM_fatal_error(
|
|
|
+_NOINLINE void FailedToBox_OOM_unrecoverable_error(
|
|
|
__in ULONG_PTR context)
|
|
|
{
|
|
|
int scenario = 1;
|
|
|
@@ -74,7 +74,7 @@ _NOINLINE void FailedToBox_OOM_fatal_error(
|
|
|
}
|
|
|
|
|
|
#if defined(RECYCLER_WRITE_BARRIER) && defined(TARGET_64)
|
|
|
-_NOINLINE void X64WriteBarrier_OOM_fatal_error()
|
|
|
+_NOINLINE void X64WriteBarrier_OOM_unrecoverable_error()
|
|
|
{
|
|
|
int scenario = 3;
|
|
|
ReportFatalException(NULL, E_OUTOFMEMORY, WriteBarrier_OUTOFMEMORY, scenario);
|
|
|
@@ -109,19 +109,19 @@ _NOINLINE void LargeHeapBlock_Metadata_Corrupted(
|
|
|
#endif
|
|
|
|
|
|
// If you see this error, it is because of a DOM bug. Assign to daniec or jdweiner.
|
|
|
-_NOINLINE void FromDOM_NoScriptScope_fatal_error()
|
|
|
+_NOINLINE void FromDOM_NoScriptScope_unrecoverable_error()
|
|
|
{
|
|
|
int scenario = 5;
|
|
|
ReportFatalException(NULL, E_UNEXPECTED, EnterScript_FromDOM_NoScriptScope, scenario);
|
|
|
}
|
|
|
|
|
|
-_NOINLINE void Debugger_AttachDetach_fatal_error(HRESULT hr)
|
|
|
+_NOINLINE void Debugger_AttachDetach_unrecoverable_error(HRESULT hr)
|
|
|
{
|
|
|
int scenario = 5;
|
|
|
ReportFatalException(NULL, hr, Fatal_Debugger_AttachDetach_Failure, scenario);
|
|
|
}
|
|
|
|
|
|
-_NOINLINE void EntryExitRecord_Corrupted_fatal_error()
|
|
|
+_NOINLINE void EntryExitRecord_Corrupted_unrecoverable_error()
|
|
|
{
|
|
|
int scenario = 6;
|
|
|
ReportFatalException(NULL, E_UNEXPECTED, Fatal_EntryExitRecordCorruption, scenario);
|
|
|
@@ -133,13 +133,13 @@ _NOINLINE void UnexpectedExceptionHandling_fatal_error()
|
|
|
ReportFatalException(NULL, E_UNEXPECTED, Fatal_UnexpectedExceptionHandling, scenario);
|
|
|
}
|
|
|
|
|
|
-_NOINLINE void RpcFailure_fatal_error(HRESULT hr)
|
|
|
+_NOINLINE void RpcFailure_unrecoverable_error(HRESULT hr)
|
|
|
{
|
|
|
int scenario = 8;
|
|
|
ReportFatalException(NULL, hr, Fatal_RpcFailure, scenario);
|
|
|
}
|
|
|
|
|
|
-_NOINLINE void OutOfMemory_fatal_error()
|
|
|
+_NOINLINE void OutOfMemory_unrecoverable_error()
|
|
|
{
|
|
|
int scenario = 9;
|
|
|
ReportFatalException(NULL, E_OUTOFMEMORY, Fatal_OutOfMemory, scenario);
|