Changeset 3d68be1 in rtems
- Timestamp:
- Aug 4, 2013, 6:21:04 PM (7 years ago)
- Branches:
- 4.11, 5, master
- Children:
- ffa2def
- Parents:
- 71336bf
- git-author:
- WeiY <wei.a.yang@…> (08/04/13 18:21:04)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (08/06/13 09:02:56)
- Location:
- cpukit/score/include/rtems/score
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/include/rtems/score/atomic.h
r71336bf r3d68be1 90 90 * @param order a type of Atomic_Order. 91 91 * 92 * @retval a result value afteradd ops.92 * @retval a result value before add ops. 93 93 */ 94 94 RTEMS_INLINE_ROUTINE uint_fast32_t _Atomic_Fetch_add_uint( … … 117 117 * @param order a type of Atomic_Order. 118 118 * 119 * @retval a result value aftersub ops.119 * @retval a result value before sub ops. 120 120 */ 121 121 RTEMS_INLINE_ROUTINE uint_fast32_t _Atomic_Fetch_sub_uint( … … 144 144 * @param order a type of Atomic_Order. 145 145 * 146 * @retval a result value afteror ops.146 * @retval a result value before or ops. 147 147 */ 148 148 RTEMS_INLINE_ROUTINE uint_fast32_t _Atomic_Fetch_or_uint( … … 171 171 * @param order a type of Atomic_Order. 172 172 * 173 * @retval a result value afterand ops.173 * @retval a result value before and ops. 174 174 */ 175 175 RTEMS_INLINE_ROUTINE uint_fast32_t _Atomic_Fetch_and_uint( … … 198 198 * @param order a type of Atomic_Order. 199 199 * 200 * @retval a result value afterexchange ops.200 * @retval a result value before exchange ops. 201 201 */ 202 202 RTEMS_INLINE_ROUTINE uint_fast32_t _Atomic_Exchange_uint( -
cpukit/score/include/rtems/score/cpustdatomic.h
r71336bf r3d68be1 126 126 * @param order a type of Atomic_Order. 127 127 * 128 * @retval a result value afteradd ops.128 * @retval a result value before add ops. 129 129 */ 130 130 RTEMS_INLINE_ROUTINE uint_fast32_t _CPU_atomic_Fetch_add_uint( … … 153 153 * @param order a type of Atomic_Order. 154 154 * 155 * @retval a result value aftersub ops.155 * @retval a result value before sub ops. 156 156 */ 157 157 RTEMS_INLINE_ROUTINE uint_fast32_t _CPU_atomic_Fetch_sub_uint( … … 180 180 * @param order a type of Atomic_Order. 181 181 * 182 * @retval a result value afteror ops.182 * @retval a result value before or ops. 183 183 */ 184 184 RTEMS_INLINE_ROUTINE uint_fast32_t _CPU_atomic_Fetch_or_uint( … … 207 207 * @param order a type of Atomic_Order. 208 208 * 209 * @retval a result value afterand ops.209 * @retval a result value before and ops. 210 210 */ 211 211 RTEMS_INLINE_ROUTINE uint_fast32_t _CPU_atomic_Fetch_and_uint( … … 234 234 * @param order a type of Atomic_Order. 235 235 * 236 * @retval a result value afterexchange ops.236 * @retval a result value before exchange ops. 237 237 */ 238 238 RTEMS_INLINE_ROUTINE uint_fast32_t _CPU_atomic_Exchange_uint(
Note: See TracChangeset
for help on using the changeset viewer.