-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Remove preventing EH and entering EE at shutdown #100293
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1332,9 +1332,6 @@ void STDMETHODCALLTYPE EEShutDownHelper(BOOL fIsDllUnloading) | |
| // Shutdown finalizer before we suspend all background threads. Otherwise we | ||
| // never get to finalize anything. | ||
|
|
||
| // No longer process exceptions | ||
| g_fNoExceptions = true; | ||
|
|
||
| // <TODO>@TODO: This does things which shouldn't occur in part 2. Namely, | ||
| // calling managed dll main callbacks (AppDomain::SignalProcessDetach), and | ||
| // RemoveAppDomainFromIPC. | ||
|
Member
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. I am looking at what we do below and there seems to be more instances of questionable cleanup:
Member
Author
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. The Disassembler::StaticClose(); frees the disassembler shared library, it also sounds like something we should not do.
Member
Author
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. StubManager::TerminateStubManagers - it actually doesn't do anything interesting. The whole log is just a SString instance that is never accessed in any way - there is a |
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.