4 #ifndef INCLUDED_OSL_INTERLCK_H
5 #define INCLUDED_OSL_INTERLCK_H
16 #if defined LIBO_INTERNAL_ONLY
17 #include "config_global.h"
51 #if HAVE_GCC_BUILTIN_ATOMIC
52 # define osl_atomic_increment(p) __sync_add_and_fetch((p), 1)
54 # define osl_atomic_increment(p) _InterlockedIncrement(p)
56 # define osl_atomic_increment(p) osl_incrementInterlockedCount((p))
70 #if HAVE_GCC_BUILTIN_ATOMIC
71 # define osl_atomic_decrement(p) __sync_sub_and_fetch((p), 1)
73 # define osl_atomic_decrement(p) _InterlockedDecrement(p)
75 # define osl_atomic_decrement(p) osl_decrementInterlockedCount((p))
85 #endif // INCLUDED_OSL_INTERLCK_H
SAL_DLLPUBLIC oslInterlockedCount osl_decrementInterlockedCount(oslInterlockedCount *pCount)
Decrement the count variable addressed by pCount.
sal_Int32 oslInterlockedCount
Definition: interlck.h:24
SAL_DLLPUBLIC oslInterlockedCount osl_incrementInterlockedCount(oslInterlockedCount *pCount)
Increments the count variable addressed by pCount.
#define SAL_DLLPUBLIC
Definition: saldllapi.h:14