File tree 2 files changed +2
-2
lines changed
kotlinx-coroutines-core/native/src
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ private class BlockingCoroutine<T>(
84
84
} else {
85
85
parkNanos = Long .MAX_VALUE
86
86
}
87
- // note: process next even may loose unpark flag, so check if completed before parking
87
+ // note: processNextEvent may lose unpark flag, so check if completed before parking
88
88
if (isCompleted) break
89
89
joinWorker.park(parkNanos / 1000L , true )
90
90
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import kotlin.native.concurrent.*
10
10
11
11
internal actual object DefaultExecutor : CoroutineDispatcher(), Delay {
12
12
13
- private val delegate = WorkerDispatcher (name = " Dispatchers.Default " )
13
+ private val delegate = WorkerDispatcher (name = " DefaultExecutor " )
14
14
15
15
override fun dispatch (context : CoroutineContext , block : Runnable ) {
16
16
checkState()
You can’t perform that action at this time.
0 commit comments