44
votes
14answers
2k views
How should I unit test threaded code?
Hot-on-the-heels of of my previous unit testing related question, here's another toughie:
I have thus far avoided the nightmare that is testing multi-threaded code since it just seems like too much …
33
votes
47answers
6k views
What is the most frequent concurrency problem you’ve encountered in Java?
This is a poll of sorts about common concurrency problems in Java. An example might be the classic deadlock or race condition or perhaps EDT threading bugs in Swing. I'm interested both in a breadth …
28
votes
2answers
2k views
Why is there no GIL in the Java Virtual Machine? Why does Python need one so bad?
I'm hoping someone can provide some insight as to what's fundamentally different about the Java Virtual Machine that allows it to implement threads nicely without the need for a Global Interpreter …
28
votes
12answers
2k views
What is meant by “thread-safe” code?
Does it mean that two threads can't change the undelying data simultaneously? or does it mean that the given code component will run with unpredictable results when more than one thread are running …
22
votes
14answers
3k views
I’ve heard i++ isn’t thread safe, is ++i thread-safe?
I've heard that i++ isn't a thread-safe statement since in assembly it reduces down to storing the original value as a temp somewhere, incrementing it, and then replacing it, which could be …
21
votes
4answers
3k views
Could you explain STA and MTA?
I'm having trouble understanding STA and MTA. If you could explain it in your own words that would be great. Also what are Apartment threads and do they pertain only to COM? If so why?
20
votes
10answers
3k views
C# Events and Thread Safety
I frequently hear/read the following advice:
Always make a copy of an event before you check it for null and fire it. This will eliminate a potential problem with threading where the event becomes …
19
votes
3answers
896 views
How to detect when application terminates?
This is a follow up to my initial question and I would like to present my findings and ask for corrections, ideas and insights. My findings (or rather interpretations) come from people's answers to my …
18
votes
7answers
484 views
Recommended book about parallel programming - theory & best practice?
I'm looking for a book or books about multicore, multithreaded programming. The perfect book should focus on best practices and maybe include a bit of theory background. I'm not interested in a book …
18
votes
8answers
932 views
Multithreaded paranoia
This is a complex question, please consider carefully before answering.
Consider this situation. Two threads (a reader and a writer) access a single global int. Is this safe? Normally, I would …
18
votes
7answers
2k views
Volatile vs. Interlocked vs. lock
Let's say that a class has a public int counter field that is accessed by multiple threads. This int is only incremented or decremented.
To increment this field, which approach should be used, and …
18
votes
12answers
5k views
When to use thread pool in C#?
I have been trying to learn multithreaded programming in C# and am confused about when it is best to use the thread pool vs. create my own threads. One book recommended using the thread pool for …
17
votes
6answers
1k views
Why is lock(this) {…} bad?
The MSDN documentation says that
public class SomeObject
{
public void SomeOperation()
{
lock(this)
{
//Access instance variables
}
}
}
is "is a problem if the instance can …
17
votes
8answers
999 views
Are locks unnecessary in multi-threaded Python code because of the GIL?
If you are relying on an implementation of Python that has a Global Interpreter Lock (i.e. CPython) and writing multithreaded code, do you really need locks at all?
If the GIL doesn't allow multiple …
16
votes
7answers
767 views
Difference between wait() and sleep()
What is the difference between a wait() and sleep() in Threads?
Is my understanding that a wait()-ing Thread is still in running mode and uses CPU cycles but a sleep()-ing does not consume any CPU …
