Changes in kernel/generic/src/smp/smp_call.c [05882233:e3306d04] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/smp/smp_call.c
r05882233 re3306d04 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.