nativeMain.internal.ProbesSupport.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
Show all versions of kotlinx-coroutines-core
Coroutines support libraries for Kotlin
package kotlinx.coroutines.internal
import kotlin.coroutines.*
@Suppress("NOTHING_TO_INLINE")
internal actual inline fun probeCoroutineCreated(completion: Continuation): Continuation = completion
@Suppress("NOTHING_TO_INLINE")
internal actual inline fun probeCoroutineResumed(completion: Continuation) { }