gcconcurrent config should be obtained from g_pConfig which takes env vars/reg values...
authorMaoni Stephens <Maoni0@users.noreply.github.com>
Thu, 27 Jul 2017 19:26:15 +0000 (12:26 -0700)
committerGitHub <noreply@github.com>
Thu, 27 Jul 2017 19:26:15 +0000 (12:26 -0700)
src/vm/gcenv.ee.cpp

index 6fe9a71..7ab22db 100644 (file)
@@ -1031,7 +1031,7 @@ bool GCToEEInterface::GetBooleanConfigValue(const char* key, bool* value)
 
     if (strcmp(key, "gcConcurrent") == 0)
     {
-        *value = g_IGCconcurrent != 0;
+        *value = !!g_pConfig->GetGCconcurrent();
         return true;
     }