Merge "[3.0] Modify doxygen comment of AtomicOperation as ACR review" into devel_3...
authordahyeong.kim <dahyeong.kim@samsung.com>
Tue, 27 Aug 2013 05:07:18 +0000 (05:07 +0000)
committerGerrit Code Review <gerrit@gerrit.vlan144.tizendev.org>
Tue, 27 Aug 2013 05:07:19 +0000 (05:07 +0000)
src/base/inc/FBaseUtil_AtomicOperations.h

index d2dbc77..479406f 100644 (file)
@@ -29,8 +29,8 @@ namespace _AtomicOperations
 /**
  * Atomically add the @c value to the variable that @c pRefCount points to.
  *
- * @since      2.1
- * @remarks    This method supposes 4 byte alignment in ARM architecture.
+ * @since      2.2
+ * @remarks    This method supposes 4 byte alignment on ARM architecture.
  */
 inline int
 AtomicAdd(volatile int* pRefCount, int value)
@@ -56,8 +56,8 @@ AtomicAdd(volatile int* pRefCount, int value)
 /**
  * Atomically increase the variable that @c pRefCount points to by 1
  *
- * @since      2.1
- * @remarks    This method supposes 4 byte alignment in ARM architecture.
+ * @since      2.2
+ * @remarks    This method supposes 4 byte alignment on ARM architecture.
  */
 inline int
 AtomicInc(volatile int* pRefCount)
@@ -68,8 +68,8 @@ AtomicInc(volatile int* pRefCount)
 /**
  * Atomically decrease the variable that @c pRefCount points to by 1
  *
- * @since      2.1
- * @remarks    This method supposes 4 byte alignment in ARM architecture.
+ * @since      2.2
+ * @remarks    This method supposes 4 byte alignment on ARM architecture.
  */
 inline int
 AtomicDec(volatile int* pRefCount)