Changes in benchmark/readyQ/locality.cfa [b6460bf:c4241b6]
- File:
-
- 1 edited
-
benchmark/readyQ/locality.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/locality.cfa
rb6460bf rc4241b6 8 8 9 9 // ================================================== 10 thread MyThread {10 thread __attribute__((aligned(128))) MyThread { 11 11 struct MyData * volatile data; 12 12 … … 35 35 36 36 // ================================================== 37 struct MyData {37 struct __attribute__((aligned(128))) MyData { 38 38 uint64_t _p1[16]; // padding 39 39 uint64_t * data; … … 71 71 // Atomic object where a single thread can wait 72 72 // May exchanges data 73 struct MySpot {73 struct __attribute__((aligned(128))) MySpot { 74 74 MyThread * volatile ptr; 75 75 size_t id;
Note:
See TracChangeset
for help on using the changeset viewer.