Changes in / [c26bea2a:53f6a11]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrency/lockfree_stack.cfa
rc26bea2a r53f6a11 10 10 // Created On : Thu May 25 15:36:50 2023 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu May 25 16:20:23202313 // Update Count : 212 // Last Modified On : Fri May 26 08:08:47 2023 13 // Update Count : 4 14 14 // 15 15 … … 24 24 uintptr_t count; // count each push 25 25 }; 26 #if defined( __SIZEOF_INT128__ ) 26 27 __int128 atom; // gcc, 128-bit integer 28 #else 29 int64_t atom; 30 #endif // __SIZEOF_INT128__ 27 31 } __attribute__(( aligned( 16 ) )); 28 32
Note: See TracChangeset
for help on using the changeset viewer.