Tagged Questions
7
votes
6answers
414 views
In C/C++, are volatile variables guaranteed to have eventually consistent semantics betwen threads?
Is there any guarantee by any commonly followed standard (ISO C or C++, or
any of the POSIX/SUS specifications) that a variable (perhaps
marked volatile), not guarded by a mutex, that is being ...
7
votes
4answers
1k views
Does Delphi have any equivalent to C's volatile variable?
In C and C++ a variable can be marked as volatile, which means the compiler will not optimize it because it may be modified external to the declaring object. Is there an equivalent in Delphi ...