Scott
Scott

Reputation: 1186

C++ synchronization guidelines

Does anyone know of a decent reference for synchronization issues in C++? I'm thinking of something similar to the C++ FAQ lite (and the FQA lite) but with regards to concurrency, locking, threading, performance issues, guidelines, when locks are needed and when they aren't, dealing with multithreaded library code that you can't control, etc. I don't care about the inner issues of how different lock types can be implemented etc, I just use boost for that.

I'm sure there are a lot of good books out there, I'd prefer something (preferably online) that I can use as a goto for when a question or an issue pops up in my mind. I'm not really a beginner to this all so I would like a concise reference for all those different types of situations that can popup when writing multithreaded libraries that use other multithreaded libraries.

Like:

Anyway, I just want to know if there are any decent references out there that people use.

Upvotes: 4

Views: 3575

Answers (1)

James McNellis
James McNellis

Reputation: 354979

I'd recommend two resources:

Upvotes: 10

Related Questions