- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel.cfa
r7fdae38 rdab09ad 532 532 unsigned total = this.total; 533 533 processor * proc = &this.list`first; 534 // Compilerfence is unnecessary, but gcc-8 and older incorrectly reorder code without it535 asm volatile("": : :"memory");534 // Thread fence is unnecessary, but gcc-8 and older incorrectly reorder code without it 535 __atomic_thread_fence(__ATOMIC_SEQ_CST); 536 536 if(l != __atomic_load_n(&this.lock, __ATOMIC_SEQ_CST)) { Pause(); continue; } 537 537 return [idle, total, proc];
Note:
See TracChangeset
for help on using the changeset viewer.