blob: c4f3d7f3ad33ea761671f9ad68a4940e13a9e4f2 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.experimental.internal
internal actual typealias ReentrantLock = NoOpLock
internal actual inline fun <T> ReentrantLock.withLock(action: () -> T) = action()
internal class NoOpLock {
fun tryLock() = true
fun unlock(): Unit {}
}
internal actual fun <E> subscriberList(): SubscribersList<E> = CopyOnWriteList()