summaryrefslogtreecommitdiff
path: root/src/vm/gcenv.ee.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/gcenv.ee.h')
-rw-r--r--src/vm/gcenv.ee.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/gcenv.ee.h b/src/vm/gcenv.ee.h
index 063fa2554e..b2ada36bcd 100644
--- a/src/vm/gcenv.ee.h
+++ b/src/vm/gcenv.ee.h
@@ -36,7 +36,6 @@ public:
gc_alloc_context * GetAllocContext(Thread * pThread);
bool CatchAtSafePoint(Thread * pThread);
void GcEnumAllocContexts(enum_alloc_context_func* fn, void* param);
- Thread* CreateBackgroundThread(GCBackgroundThreadFunction threadStart, void* arg);
// Diagnostics methods.
void DiagGCStart(int gen, bool isInduced);
@@ -59,7 +58,8 @@ public:
bool GetStringConfigValue(const char* key, const char** value);
void FreeStringConfigValue(const char* value);
bool IsGCThread();
- bool IsGCSpecialThread();
+ bool WasCurrentThreadCreatedByGC();
+ bool CreateThread(void (*threadStart)(void*), void* arg, bool is_suspendable, const char* name);
};
} // namespace standalone