File tree Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ class GCToEEInterface
72
72
static void HandleFatalError (unsigned int exitCode);
73
73
static bool ShouldFinalizeObjectForUnload (AppDomain* pDomain, Object* obj);
74
74
static bool ForceFullGCToBeBlocking ();
75
- static bool ShouldElevateForAppDomainCleanup ();
76
75
static bool EagerFinalized (Object* obj);
77
76
};
78
77
Original file line number Diff line number Diff line change @@ -143,11 +143,6 @@ class IGCToCLR {
143
143
virtual
144
144
bool ShouldFinalizeObjectForUnload (AppDomain* pDomain, Object* obj) = 0;
145
145
146
- // Asks the EE if the GC scheduled for the given condemned generation should be
147
- // elevated to a blocking collection, to clean up an app domain.
148
- virtual
149
- bool ShouldElevateForAppDomainCleanup () = 0;
150
-
151
146
// Offers the EE the option to finalize the given object eagerly, i.e.
152
147
// not on the finalizer thread but on the current thread. The
153
148
// EE returns true if it finalized the object eagerly and the GC does not
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ class GCToEEInterface : public IGCToCLR {
46
46
void EnableFinalization (bool foundFinalizers);
47
47
void HandleFatalError (unsigned int exitCode);
48
48
bool ShouldFinalizeObjectForUnload (AppDomain* pDomain, Object* obj);
49
- bool ShouldElevateForAppDomainCleanup ();
50
49
bool ForceFullGCToBeBlocking ();
51
50
bool EagerFinalized (Object* obj);
52
51
};
You can’t perform that action at this time.
0 commit comments