summaryrefslogtreecommitdiff
path: root/sal/inc/osl/interlck.h
diff options
context:
space:
mode:
Diffstat (limited to 'sal/inc/osl/interlck.h')
-rw-r--r--sal/inc/osl/interlck.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/inc/osl/interlck.h b/sal/inc/osl/interlck.h
index 792ea55051d9..537df6ec36d7 100644
--- a/sal/inc/osl/interlck.h
+++ b/sal/inc/osl/interlck.h
@@ -63,7 +63,7 @@ SAL_DLLPUBLIC oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInte
@param p Address of count variable
@return The adjusted value of the count variable.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
#if defined( HAVE_GCC_BUILTIN_ATOMIC )
# define osl_atomic_increment(p) __sync_add_and_fetch((p), 1)
@@ -80,7 +80,7 @@ SAL_DLLPUBLIC oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInte
@param p Address of count variable
@return The adjusted value of the count variable.
- @since LibreOffice 3.7
+ @since LibreOffice 4.0
*/
#if defined( HAVE_GCC_BUILTIN_ATOMIC )
# define osl_atomic_decrement(p) __sync_sub_and_fetch((p), 1)