Does K/N initialize all globals on the main thread...
# kotlin-native
b
Does K/N initialize all globals on the main thread during runtime init? (for native, specifically)
d
From experience I can say with some certainty that it does
o
Thread locals are initialized when new runtime is started, other ones on the first runtime init, whatever thread it is on.
b
Thanks!