![JAR search and dependency download from the Maven repository](/logo.png)
jvmMain.io.matthewnelson.kmp.process.internal.-JvmPlatform.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of process-jvm Show documentation
Show all versions of process-jvm Show documentation
Process for Kotlin Multiplatform
/*
* Copyright (c) 2024 Matthew Nelson
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
@file:Suppress("EXPECT_ACTUAL_CLASSIFIERS_ARE_IN_BETA_WARNING")
package io.matthewnelson.kmp.process.internal
import io.matthewnelson.kmp.file.*
import kotlin.time.Duration
internal actual val STDIO_NULL: File = (System.getProperty("os.name")
?.ifBlank { null }
?.contains("windows", ignoreCase = true)
?: (SysDirSep == '\\'))
.let { isWindows -> if (isWindows) "NUL" else "/dev/null" }
.toFile()
internal actual val IsMobile: Boolean get() = ANDROID.SDK_INT != null
@Suppress("NOTHING_TO_INLINE")
@Throws(InterruptedException::class)
internal actual inline fun Duration.threadSleep() {
Thread.sleep(inWholeMilliseconds)
}
@Suppress("ACTUAL_WITHOUT_EXPECT")
internal actual typealias ReadStream = java.io.InputStream
@Suppress("ACTUAL_WITHOUT_EXPECT")
internal actual typealias WriteStream = java.io.OutputStream
© 2015 - 2025 Weber Informatics LLC | Privacy Policy