Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: cv-qualify

...

Code that accesses shared data, and that would otherwise be protected from data races.

Anchor
cvqualify
cvqualify

cv-qualify

A type that is qualified by either const or volatile.

Anchor
data race
data race

data race [ISO/IEC N3000]
The execution of a program contains a data race if it contains two conflicting actions in different threads, at least one of which is not atomic, and neither happens before the other. Any such data race results in undefined behavior.

...