On Mon, Jul 7, 2014 at 3:26 PM, Georg Baum <georg.b...@post.rwth-aachen.de> wrote:
> 2) decide what to do: Is it possible to get rid of the static data > completely? If not, is it better to use a mutex or local thread storage? How do you decide between a mutex or local thread storage? My wild guess is (I have no experience with concurrency issues but have wanted to study them): local thread storage is better if threads do not need to share memory between them. Scott