Skip to content

Commit f9d0333

Browse files
authored
[Local GC] Fix a bad merge (#10748)
1 parent 87ae15c commit f9d0333

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/gc/env/gcenv.ee.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ class GCToEEInterface
7272
static void HandleFatalError(unsigned int exitCode);
7373
static bool ShouldFinalizeObjectForUnload(AppDomain* pDomain, Object* obj);
7474
static bool ForceFullGCToBeBlocking();
75-
static bool ShouldElevateForAppDomainCleanup();
7675
static bool EagerFinalized(Object* obj);
7776
};
7877

src/gc/gcinterface.ee.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,6 @@ class IGCToCLR {
143143
virtual
144144
bool ShouldFinalizeObjectForUnload(AppDomain* pDomain, Object* obj) = 0;
145145

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-
151146
// Offers the EE the option to finalize the given object eagerly, i.e.
152147
// not on the finalizer thread but on the current thread. The
153148
// EE returns true if it finalized the object eagerly and the GC does not

src/vm/gcenv.ee.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ class GCToEEInterface : public IGCToCLR {
4646
void EnableFinalization(bool foundFinalizers);
4747
void HandleFatalError(unsigned int exitCode);
4848
bool ShouldFinalizeObjectForUnload(AppDomain* pDomain, Object* obj);
49-
bool ShouldElevateForAppDomainCleanup();
5049
bool ForceFullGCToBeBlocking();
5150
bool EagerFinalized(Object* obj);
5251
};

0 commit comments

Comments
 (0)