|
|
|
|
|
by Thaxll
325 days ago
|
|
I have a hard time believing that it's common to create SEGFAULT in Go, I worked with the language for a very long time and don't remember a single time where I've seen that. ( and i've seen many data race ) Not synchronizing writes on most data structure does not create a SEGFAULT, you have to be in a very specific condition to create one, those conditions are extremely rares and un-usual ( from the programmer perspective). In OP blog to triggers one he's doing one of those condition in an infinite loop. https://research.swtch.com/gorace |
|