From: Vijay Ramakrishnan Date: Sat, 22 Oct 2016 11:51:20 +0000 (-0700) Subject: Fixing the StackOverflowException error message. (#4786) X-Git-Tag: accepted/tizen/base/20180629.140029~3268 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24a6c7908f2582fb8628e53fe3d02306f6fba43c;p=platform%2Fupstream%2Fcoreclr.git Fixing the StackOverflowException error message. (#4786) --- diff --git a/src/pal/src/include/pal/palinternal.h b/src/pal/src/include/pal/palinternal.h index fa51ecc..53d5203 100644 --- a/src/pal/src/include/pal/palinternal.h +++ b/src/pal/src/include/pal/palinternal.h @@ -712,7 +712,7 @@ inline T* InterlockedCompareExchangePointerT( #include "volatile.h" -const char StackOverflowMessage[] = "Process is terminated due to StackOverflowException.\n"; +const char StackOverflowMessage[] = "Process is terminating due to StackOverflowException.\n"; #endif // __cplusplus diff --git a/src/vm/eepolicy.cpp b/src/vm/eepolicy.cpp index 8c3f2ec..236f5af 100644 --- a/src/vm/eepolicy.cpp +++ b/src/vm/eepolicy.cpp @@ -1368,7 +1368,7 @@ void DisplayStackOverflowException() LIMITED_METHOD_CONTRACT; PrintToStdErrA("\n"); - PrintToStdErrA("Process is terminated due to StackOverflowException.\n"); + PrintToStdErrA("Process is terminating due to StackOverflowException.\n"); } void DECLSPEC_NORETURN EEPolicy::HandleFatalStackOverflow(EXCEPTION_POINTERS *pExceptionInfo, BOOL fSkipDebugger)