blob: 420e0d2cb02f5bdf8f6b7cef500989b0e723c25c [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.internal
import kotlin.native.concurrent.*
@Suppress("ACTUAL_WITHOUT_EXPECT")
internal actual typealias NativeThreadLocal = kotlin.native.ThreadLocal
internal actual class CommonThreadLocal<T> actual constructor() {
private var value: T? = null
@Suppress("UNCHECKED_CAST")
actual fun get(): T = value as T
actual fun set(value: T) { this.value = value }
}