Possible Duplicate:
What are common concurrency pitfalls?
What are the pitfalls to be considered while doing multithreaded programming in any programming language, esp Java?
|
1
|
What are the pitfalls to be considered while doing multithreaded programming in any programming language, esp Java?
|
||||||
|
|
|
Just found this paper, sounds interesting: A Study of Common Pitfalls in Simple Multi-Threaded Programs |
||
|
|
|
In a multithreaded environment you have to share information between the threads. All pitfalls occur at this exchange interface or at the manipulation of the shared data. Generally speaking, the shared data has to be somehow locked before it is manipulated. Pitfalls are:
|
||
|
|
|
|
Concurrency problems like the dining philosophers problem. |
||
|