Hacker News new | ask | show | jobs
by prabhu-yu 1295 days ago
Thank you for the respone.

Can we write like this? Klass ssc __attribute__((64));

This could convey more info than padding.

Further, I wish, gcc could have provided an attribute that explicitly forces for the cache line alignment than just generic alignment. Generic scalar type alignment is not same as the cache line alignment.

Example: Klass sc __attribute__((start_at_cache_line));

1 comments

alignas(std::hardware_destructive_interference_size) is the portable solution.
Thank you for sharing this. I was not aware of this. But now agree, it is indeed portable solution.