Hacker News new | ask | show | jobs
by ben0x539 4490 days ago
Aren't those undefined behavior bugs?
2 comments

Imagine two threads that safely lock a resource, increment it, copy the value, and then unlock it. This is entirely defined, but also a race condition.

Race conditions are a lot like unsanitized input. They don't cause problems by themselves, but if you make incorrect assumptions it's easy to write incorrect code.

It's data races specifically that are undefined behaviour.