-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Delete unused legacy hosting flags #112975
Open
jkotas
wants to merge
2
commits into
dotnet:main
Choose a base branch
from
jkotas:cleanup
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+10
−386
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,8 +128,7 @@ BOOL ShouldOurUEFDisplayUI(PEXCEPTION_POINTERS pExceptionInfo) | |
BOOL NotifyAppDomainsOfUnhandledException( | ||
PEXCEPTION_POINTERS pExceptionPointers, | ||
OBJECTREF *pThrowableIn, | ||
BOOL useLastThrownObject, | ||
BOOL isTerminating); | ||
BOOL useLastThrownObject); | ||
|
||
VOID SetManagedUnhandledExceptionBit( | ||
BOOL useLastThrownObject); | ||
|
@@ -4462,19 +4461,6 @@ LONG InternalUnhandledExceptionFilter_Worker( | |
|
||
if (pParam->pThread != NULL) | ||
{ | ||
|
||
// In CoreCLR, we can be asked to not let an exception go unhandled on managed threads. | ||
// If the exception reaches the top of the thread's stack, we simply deliver AppDomain's UnhandledException event and | ||
// return back to the filter, instead of letting the process terminate because of unhandled exception. | ||
|
||
// This code must only be exercised when running as a normal filter; returning | ||
// EXCEPTION_EXECUTE_HANDLER is not valid if this code is being invoked from | ||
// the UEF. | ||
// Fortunately, we should never get into this case, since the thread flag about | ||
// ignoring unhandled exceptions cannot be set on the default domain. | ||
|
||
BOOL fIsProcessTerminating = !(AppDomain::GetCurrentDomain()->IgnoreUnhandledExceptions()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This functionality is superseded by #101560 |
||
|
||
#ifndef TARGET_UNIX | ||
// Setup the watson bucketing details for UE processing. | ||
// do this before notifying appdomains of the UE so if an AD attempts to | ||
|
@@ -4483,14 +4469,7 @@ LONG InternalUnhandledExceptionFilter_Worker( | |
#endif // !TARGET_UNIX | ||
|
||
// Send notifications to the AppDomains. | ||
NotifyAppDomainsOfUnhandledException(pParam->pExceptionInfo, NULL, useLastThrownObject, fIsProcessTerminating /*isTerminating*/); | ||
|
||
// If the process is not terminating, then return back to the filter and ask it to execute | ||
if (!fIsProcessTerminating) | ||
{ | ||
pParam->retval = EXCEPTION_EXECUTE_HANDLER; | ||
goto lDone; | ||
} | ||
NotifyAppDomainsOfUnhandledException(pParam->pExceptionInfo, NULL, useLastThrownObject); | ||
} | ||
else | ||
{ | ||
|
@@ -4560,7 +4539,7 @@ LONG InternalUnhandledExceptionFilter_Worker( | |
|
||
// Call our default catch handler to do the managed unhandled exception work. | ||
DefaultCatchHandler(pParam->pExceptionInfo, NULL, useLastThrownObject, | ||
TRUE /*isTerminating*/, FALSE /*isThreadBaseFIlter*/, FALSE /*sendAppDomainEvents*/, TRUE /* sendWindowsEventLog */); | ||
FALSE /*isThreadBaseFIlter*/, FALSE /*sendAppDomainEvents*/, TRUE /* sendWindowsEventLog */); | ||
|
||
lDone: ; | ||
} | ||
|
@@ -4862,7 +4841,6 @@ void STDMETHODCALLTYPE | |
DefaultCatchHandler(PEXCEPTION_POINTERS pExceptionPointers, | ||
OBJECTREF *pThrowableIn, | ||
BOOL useLastThrownObject, | ||
BOOL isTerminating, | ||
BOOL isThreadBaseFilter, | ||
BOOL sendAppDomainEvents, | ||
BOOL sendWindowsEventLog) | ||
|
@@ -4976,7 +4954,7 @@ DefaultCatchHandler(PEXCEPTION_POINTERS pExceptionPointers, | |
// Send up the unhandled exception appdomain event. | ||
if (sendAppDomainEvents) | ||
{ | ||
SentEvent = NotifyAppDomainsOfUnhandledException(pExceptionPointers, &throwable, useLastThrownObject, isTerminating); | ||
SentEvent = NotifyAppDomainsOfUnhandledException(pExceptionPointers, &throwable, useLastThrownObject); | ||
} | ||
|
||
const int buf_size = 128; | ||
|
@@ -5073,8 +5051,7 @@ DefaultCatchHandler(PEXCEPTION_POINTERS pExceptionPointers, | |
BOOL NotifyAppDomainsOfUnhandledException( | ||
PEXCEPTION_POINTERS pExceptionPointers, | ||
OBJECTREF *pThrowableIn, | ||
BOOL useLastThrownObject, | ||
BOOL isTerminating) | ||
BOOL useLastThrownObject) | ||
{ | ||
CONTRACTL | ||
{ | ||
|
@@ -5171,7 +5148,7 @@ BOOL NotifyAppDomainsOfUnhandledException( | |
|
||
// This guy will never throw, but it will need a spot to store | ||
// any nested exceptions it might find. | ||
SentEvent = AppDomain::OnUnhandledException(&throwable, isTerminating); | ||
SentEvent = AppDomain::OnUnhandledException(&throwable); | ||
|
||
UNINSTALL_NESTED_EXCEPTION_HANDLER(); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is
LoaderOptimizationAttribute
specifying these flags. Now all the flags are deprecated, should the attribute be considered for deprecation?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possibly. I think you can find number of attribute types that were added for compatibility with .NET Framework and that have no effect in .NET Core.