fixed epics atomic read memory barrier name - old versions of vxWorks

This commit is contained in:
Jeff Hill
2011-08-30 14:04:36 -06:00
committed by Andrew Johnson
parent 798f1f2ace
commit 5f096a8b80
+2 -2
View File
@@ -229,7 +229,7 @@ EPICS_ATOMIC_INLINE void epicsAtomicUnlock ( EpicsAtomicLockKey * pKey )
* no need for memory barrior since prior to vxWorks 6.6 it is a single cpu system
* (we are not protecting against multiple access to memory mapped IO)
*/
EPICS_ATOMIC_INLINE void epicsReadMemoryBarrier () {}
EPICS_ATOMIC_INLINE void epicsAtomicReadMemoryBarrier () {}
#endif
#ifndef EPICS_WRITE_MEMORY_BARRIER
@@ -238,7 +238,7 @@ EPICS_ATOMIC_INLINE void epicsReadMemoryBarrier () {}
* no need for memory barrior since prior to vxWorks 6.6 it is a single cpu system
* (we are not protecting against multiple access to memory mapped IO)
*/
EPICS_ATOMIC_INLINE void epicsWriteMemoryBarrier () {}
EPICS_ATOMIC_INLINE void epicsAtomicWriteMemoryBarrier () {}
#endif
#ifdef __cplusplus