vote up 1 vote down star
1

Possible Duplicate:
What are common concurrency pitfalls?

What are the pitfalls to be considered while doing multithreaded programming in any programming language, esp Java?

flag

5  
Possible duplicate? stackoverflow.com/questions/520837/… – simonn Oct 17 at 12:09
+1 Simon, voting to close it – Ram Oct 17 at 12:31

closed as exact duplicate by dmckee, S.Lott, D.Shawley, Ram, coobird Oct 17 at 12:45

3 Answers

vote up 3 vote down check

Just found this paper, sounds interesting: A Study of Common Pitfalls in Simple Multi-Threaded Programs

link|flag
Please add this to stackoverflow.com/questions/520837/… – S.Lott Oct 17 at 12:38
vote up 2 vote down

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:

  • deadlocks: bad locking strategy (one thread locks A->B->C, the other B->A->C for example) or not programming exception safe, some locks are not undone in exception cases
  • race conditions: similar but lead to bad behavior or invalid data instead of a deadlock. They can be tricky to detect or to solve in some languages like C++ where the compiler might re-order statements and you do not consider memory barriers...
  • performance: badly behaving concurrent threads can slow down each other. Consider partitioning your problem adequately so that threads have only a minimal interaction and keep locks on shared objects short.
  • resources: system resources are shared, so files might be already open for another thread for writing for example, each thread shall use it's own data or use a mediator if some central resource has to be read/written. I mean that this implies often design changes if your application was not multithreaded before...
link|flag
vote up 3 vote down

Concurrency problems like the dining philosophers problem.

link|flag
+1, I didnt knew it, ty – Rubens Farias Oct 17 at 12:22

Not the answer you're looking for? Browse other questions tagged or ask your own question.