The memory-fences tag has no wiki summary.
24
votes
4answers
7k views
9
votes
5answers
1k views
Are volatile reads and writes atomic on Windows+VisualC?
There are a couple of questions on this site asking whether using a volatile variable for atomic / multithreaded access is possible: See here, here, or here for example.
Now, the C(++) standard ...
9
votes
2answers
962 views
Fences in C++0x, guarantees just on atomics or memory in general
The C++0x draft has a notion of fences which seems very distinct from a CPU/chip level notion of fences, or say what the linux kernel guys expect of fences. The question is whether the draft really ...
4
votes
1answer
1k views
Intel 64 and IA-32 | Atomic operations including acquire / release semantic
According to the Intel 64 and IA-32 Architectures Software Developer's Manual the LOCK Signal Prefix "ensures that the processor has exclusive use of any shared memory while the signal is asserted". ...
10
votes
2answers
346 views
What is the difference between using explicit fences and std::atomic?
Assuming that aligned pointer loads and stores are naturally atomic on the target platform, what is the difference between this:
// Case 1: Dumb pointer, manual fence
int* ptr;
// ...
...
8
votes
4answers
549 views
Memory ordering issues
I'm experimenting with C++0x support and there is a problem, that I guess shouldn't be there. Either I don't understand the subject or gcc has a bug.
I have the following code, initially x and y are ...
3
votes
4answers
884 views
Do we need mfence when using xchg
I have a set and test xchg based assembly lock. my question is :
Do we need to use memory fencing (mfence, sfence or lfence ) when using xchg instruction ?
Edit :
64 Bit platform : with Intel ...
0
votes
1answer
210 views
clarifications on full memory barriers involved by pthread mutexes
I have heard that when dealing with mutexes, the necessary memory barriers are handled by the pthread API itself. I would like to have more details on this matter.
Are these claimings true, at least ...