top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is false sharing in the context of multi-threading?

+2 votes
1,018 views
What is false sharing in the context of multi-threading?
posted May 25, 2016 by Karthick.c

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

False sharing is a term which applies when threads unwittingly impact the performance of each other while modifying independent variables sharing the same cache line. Write contention on cache lines is the single most limiting factor on achieving scalability for parallel threads of execution in an SMP system.

answer Dec 15, 2016 by Shyam
...