This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suspend fun <ReturnT> Mutex.checkedWithLock( | |
block: suspend () -> ReturnT | |
): ReturnT { | |
val element = LockedMutexesElement(this).key | |
check (currentCoroutineContext()[element] == null) { | |
"Reentered Mutex" | |
} | |
return withContext(element) { withLock { block() } } | |
} |