jvmMain.internal.Synchronized.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!
package kotlinx.coroutines.internal
import kotlinx.coroutines.*
/**
* @suppress **This an internal API and should not be used from general code.**
*/
@InternalCoroutinesApi
public actual typealias SynchronizedObject = Any
/**
* @suppress **This an internal API and should not be used from general code.**
*/
@InternalCoroutinesApi
public actual inline fun synchronizedImpl(lock: SynchronizedObject, block: () -> T): T =
kotlin.synchronized(lock, block)