[3.0] Modify doxygen comment of AtomicOperation as ACR review
authordahyeong.kim <dahyeong.kim@samsung.com>
Mon, 26 Aug 2013 07:44:41 +0000 (16:44 +0900)
committerdahyeong.kim <dahyeong.kim@samsung.com>
Mon, 26 Aug 2013 07:46:17 +0000 (16:46 +0900)
Change-Id: If58109ca04dbe6fa8858f8d5deecbd76f3f57f74
Signed-off-by: dahyeong.kim <dahyeong.kim@samsung.com>
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)