aboutsummaryrefslogtreecommitdiffstats
path: root/kotlinx-coroutines-core/common/src/internal/ThreadLocal.common.kt
blob: 4c09e62640c646c824620e5564729a9d5b6f1e69 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.coroutines.internal

internal expect class CommonThreadLocal<T>() {
    fun get(): T
    fun set(value: T)
}