some people asked about GCD usage example, here yo...
# kotlin-native
o
some people asked about GCD usage example, here you go: https://github.com/JetBrains/kotlin-native/pull/1641
👍 1
🎉 1
s
Why is
initRuntimeIfNeeded()
needed on the worker? Won't the runtime have definitively been initialized by then?
o
async execution happens on another thread, and runtime init is thread local, so we shall do that. Maybe, we will make this init automated