Changes in kernel/generic/src/smp/smp_call.c [e3306d04:05882233] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/smp/smp_call.c
re3306d04 r05882233 246 246 * messing up the preemption count). 247 247 */ 248 atomic_s tore(&call_info->pending, 1);248 atomic_set(&call_info->pending, 1); 249 249 250 250 /* Let initialization complete before continuing. */ … … 259 259 */ 260 260 memory_barrier(); 261 atomic_s tore(&call_info->pending, 0);261 atomic_set(&call_info->pending, 0); 262 262 } 263 263 … … 271 271 */ 272 272 memory_barrier(); 273 } while (atomic_ load(&call_info->pending));273 } while (atomic_get(&call_info->pending)); 274 274 } 275 275
Note:
See TracChangeset
for help on using the changeset viewer.