Ok, so I did a course on locks and monitors a couple of monthgs ago, and when i was doing it I could clearly see the design patterns and the Antipatterns. more recently I cwas called to put them into large scale practical use, and in the gap time (and partially my change of programming language from F# to C#), I could feel my skills had started to wan. I could see some things we were doing that felt like antipatterns (like i think there is an antipattern of using anything that is not atomic (ie most things other than lock) to keep track of that is allows and what isn't) But it took me a while to try and work out the correct code to go in its place (but i know there are textbook solutions to most problems).
So I'm looking for a some notes on design patterns/antipatterns with particular reference to locks, monitors and other threading related concerns. I would like to see examples in C# and ideally would have examples for Java and Python (F# too would be good, since while C# can be manipulated to use F# techniques they still are more prevelent in F#). Does anyone know of a good resource, (such as a website or book) Where I can find some? (since there are too many to fit in just one answer.)
(