Hacker News new | ask | show | jobs
by toast0 1244 days ago
> A (worker) thread dying isn't an issue in Rust, Go, C# and etc

If your Rust thread panics while it holds a Mutex, you've got a bit of a mess. Especially if it was halfway through updating shared mutable state. Probably similar in Go or C#, but I haven't used Go and only did cargo cult programming in C#, I didn't read any sources or see warnings about crashing in threads or async/await.