Changeset fc10e1b in mainline for kernel/generic/src/smp/smp_call.c
- Timestamp:
- 2018-09-07T16:34:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d2c91ab
- Parents:
- 508b0df1 (diff), e90cfa6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/smp/smp_call.c
r508b0df1 rfc10e1b 246 246 * messing up the preemption count). 247 247 */ 248 atomic_s et(&call_info->pending, 1);248 atomic_store(&call_info->pending, 1); 249 249 250 250 /* Let initialization complete before continuing. */ … … 259 259 */ 260 260 memory_barrier(); 261 atomic_s et(&call_info->pending, 0);261 atomic_store(&call_info->pending, 0); 262 262 } 263 263 … … 271 271 */ 272 272 memory_barrier(); 273 } while (atomic_ get(&call_info->pending));273 } while (atomic_load(&call_info->pending)); 274 274 } 275 275
Note:
See TracChangeset
for help on using the changeset viewer.