jvmMain.internal.SystemProps.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-core-jvm Show documentation
Show all versions of kotlinx-coroutines-core-jvm Show documentation
Coroutines support libraries for Kotlin
The newest version!
@file:JvmName("SystemPropsKt")
@file:JvmMultifileClass
package kotlinx.coroutines.internal
// number of processors at startup for consistent prop initialization
internal val AVAILABLE_PROCESSORS = Runtime.getRuntime().availableProcessors()
internal actual fun systemProp(
propertyName: String
): String? =
try {
System.getProperty(propertyName)
} catch (e: SecurityException) {
null
}