No. The Go Memory Model is defined in terms of goroutines, not threads.
Unsynchronized concurrent access to shared data from multiple goroutines
is not safe as soon as one of them is a writer. The implementation is
free to make use of that.
Goroutine-safe is not well-established term. While thread-safe is, and it means safe for concurrent access.
sent from phone
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
+1