commit | c22ae99d6d24d7beeaa725e379363c40f81d6988 | [log] [tgz] |
---|---|---|
author | Aleksei.Glushko <aleksei.glushko@jetbrains.com> | Tue Jun 20 14:06:06 2023 +0200 |
committer | Aleksei.Glushko <aleksei.glushko@jetbrains.com> | Tue Jun 20 14:06:06 2023 +0200 |
tree | d2c2de7f838ef51bf25d943c3b203c4d659a5389 | |
parent | e524ae0774f8a16654d42dba2ee6bdb09ec8001f [diff] |
try serial
diff --git a/kotlin-native/runtime/src/main/cpp/CompilerConstants.cpp b/kotlin-native/runtime/src/main/cpp/CompilerConstants.cpp index dbe578d..17db3d0 100644 --- a/kotlin-native/runtime/src/main/cpp/CompilerConstants.cpp +++ b/kotlin-native/runtime/src/main/cpp/CompilerConstants.cpp
@@ -42,7 +42,7 @@ } ALWAYS_INLINE uint32_t compiler::auxGCThreads() noexcept { - return Kotlin_auxGCThreads; + return 0;//Kotlin_auxGCThreads; } ALWAYS_INLINE compiler::WorkerExceptionHandling compiler::workerExceptionHandling() noexcept {
diff --git a/kotlin-native/runtime/src/main/cpp/CompilerConstants.hpp b/kotlin-native/runtime/src/main/cpp/CompilerConstants.hpp index c845d37..9dd84dd 100644 --- a/kotlin-native/runtime/src/main/cpp/CompilerConstants.hpp +++ b/kotlin-native/runtime/src/main/cpp/CompilerConstants.hpp
@@ -113,7 +113,7 @@ } ALWAYS_INLINE inline bool gcMarkSingleThreaded() noexcept { - return Kotlin_gcMarkSingleThreaded != 0; + return true;//Kotlin_gcMarkSingleThreaded != 0; }