Tagged Questions

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 ...
6
votes
2answers
182 views

volatile with release/acquire semantics

Since Java 5, the volatile keyword has release/acquire semantics to make side-effects visible to other threads (including assignments to non-volatile variables!). Take these two variables, for ...
6
votes
5answers
2k views

Does Interlocked.CompareExchange use a memory barrier?

I'm reading Joe Duffy's post about Volatile reads and writes, and timeliness, and i'm trying to understand something about the last code sample in the post: while (Interlocked.CompareExchange(ref ...
3
votes
2answers
135 views

During a data race can a thread ever read initial null value of volatile variable? especially when a non null value is assigned to it in constructor?

What puzzles me is this. Java doc of HashEntry in ConcurrentHashMap (jdk1.6.0_16) ...Because the value field is volatile, not final, it is legal wrt the Java Memory Model for an unsynchronized ...
3
votes
1answer
301 views

.NET multithreading, volatile and memory model

Assume that we have the following code: class Program { static volatile bool flag1; static volatile bool flag2; static volatile int val; static void Main(string[] args) { ...
2
votes
5answers
261 views

Memory barriers and large structs?

Let's say I've got a struct that consist of 100 bytes. What guarantees have I got about the following code? m_myLargeStruct = someValue; // copying 100 bytes Thread.MemoryBarrier(); // Executed by ...