Hacker News new | ask | show | jobs
by cabirum 269 days ago
> but goroutine B (the goroutineB function) apparently never ran at all.

Untrue. Up the iterations to 1000, you'll get your interleaving. Since 1.14, goroutines are async preemptible (async safe points), and will not block the scheduler. Also, time.Sleep bad, use runtime.Gosched().

1 comments

time.Sleep bad? Grug no understand.