pub fn smp_mb<T: MemoryBarrier<Smp>>(_: T)Expand description
Memory barrier between CPUs.
A barrier that prevents compiler and CPU from reordering memory accesses across the barrier. Does not prevent re-ordering with respect to other bus-mastering devices.
See mb for usage.