Memory Barriers
Memory barrier ensures that all reads/writes before the barrier have completed on the local processor thus separating accesses following the barrier from those before it.
.NET Memory barrier is a no-op in x86, but is required in ia64, RISC platforms etc.
Memory barrier ensures that all reads/writes before the barrier have completed on the local processor thus separating accesses following the barrier from those before it.
.NET Memory barrier is a no-op in x86, but is required in ia64, RISC platforms etc.
Comments