Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).
174
votes
4answers
36k views
How do servlets work? Instantiation, session variables and multithreading
Suppose, I have a webserver which holds numerous servlets. For information passing among those servlets I am getting the servlet context and setting session variables. Now, if 2 or more users send ...
193
votes
19answers
135k views
How to update the GUI from another thread in C#?
What is the simplest way to update a label from another thread?
My problem
I have a winform(thread1)
From thread1 I'm starting another thread (thread2).
While thread2 is processing some files, I ...
568
votes
12answers
171k views
Atomic vs nonatomic properties
What do atomic and nonatomic mean in property declarations?
@property(nonatomic, retain) UITextField *userName;
@property(atomic, retain) UITextField *userName;
@property(retain) UITextField ...
121
votes
9answers
140k views
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on
I have a scenario. (Windows Forms, C#, .NET)
There is a main form which hosts some user control.
The user control does some heavy data operation, such that if I directly call the UserControl_Load ...
90
votes
10answers
30k views
Creating a blocking Queue<T> in .NET?
I have a scenario where I have multiple threads adding to a queue and multiple threads reading from the same queue. If the queue reaches a specific size all threads that are filling the queue will be ...
14
votes
2answers
13k views
WebBrowser Control in a new thread
I have a list Uri's that I want "clicked" To achieve this I"m trying to create a new web-browser control per Uri. I create a new thread per Uri. The problem I'm having is the thread end before the ...
313
votes
21answers
136k views
“implements Runnable” vs. “extends Thread”
From what time I've spent with threads in Java, I've found these two ways to write threads.
public class ThreadA implements Runnable {
public void run() {
//Code
}
}
//with a "new ...
3
votes
2answers
3k views
JTextFields on top of active drawing on JPanel, threading problems
Has anyone ever tried to use Swing to construct a proper multi-buffered rendering environment on top of which Swing user interface elements can be added?
In this case I have an animating red ...
153
votes
11answers
84k views
Is there any way to kill a Thread in Python?
Is it possible to terminate a running thread without setting/checking any flags/semaphores/etc.?
108
votes
8answers
42k views
Implement C# Generic Timeout
I am looking for good ideas for implementing a generic way to have a single line (or anonymous delegate) of code execute with a timeout.
TemperamentalClass tc = new TemperamentalClass();
...
64
votes
5answers
27k views
Automating the InvokeRequired code pattern
I have become painfully aware of just how often one needs to write the following code pattern in event-driven GUI code, where
private void DoGUISwitch() {
// cruisin for a bruisin' through ...
142
votes
6answers
59k views
What's the difference between Invoke() and BeginInvoke()
Just wondering what the difference between BeginInvoke() and Invoke() are?
Mainly what each one would be used for.
EDIT: What is the difference between creating a threading object and calling ...
149
votes
10answers
40k 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 ...
52
votes
12answers
49k views
Does PHP have threading?
I found this PECL package called threads, but there is not a release yet. And nothing is coming up on the PHP website.
24
votes
9answers
16k views
How to stop BackgroundWorker on Form's Closing event?
I have a form that spawns a BackgroundWorker, that should update form's own textbox (on main thread), hence Invoke((Action) (...)); call.
If in HandleClosingEvent I just do bgWorker.CancelAsync() then ...
88
votes
5answers
93k views
195
votes
9answers
28k 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 ...
123
votes
12answers
37k 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 ...
146
votes
6answers
32k views
Could you explain STA and MTA?
Can you explain STA and MTA in your own words?
Also, what are apartment threads and do they pertain only to COM? If so, why?
70
votes
13answers
57k views
synchronized block vs synchronized method?
Can any one tell me the advantage of synchronized method over synchronized block with an example?Thanks.
56
votes
11answers
39k views
How to timeout a thread
I want to run a thread for some fixed amount of time. If it is not completed within that time, I want to either kill it, throw some exception, or handle it in some way. How can it be done?
One way of ...
55
votes
14answers
66k views
How can one use multi threading in PHP applications
Is there a realistic way of implementing a multi-threaded model in PHP whether truly, or just simulating it. Some time back it was suggested that you could force the operating system to load another ...
126
votes
6answers
27k views
Does ruby have real multithreading?
I know about the "cooperative" threading of ruby using green threads. How can I create real "OS-level" threads in my application in order to make use of multiple cpu cores for processing?
63
votes
15answers
33k views
subprocess with timeout
Here's the Python code to run an arbitrary command returning its stdout data, or raise an exception on non-zero exit codes:
proc = subprocess.Popen(
cmd,
stderr=subprocess.STDOUT, # merge ...
46
votes
8answers
17k views
Why spawning threads in Java EE container is discouraged?
One of the first things I've learned about Java EE development is that I shouldn't spawn my own threads inside a Java EE container. But when I come to think about it, I don't know the reason.
Can you ...
10
votes
3answers
8k views
Cross-thread operation not valid [duplicate]
Possible Duplicate:
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on
Okay, I know why this is giving me this error:
Cross-thread ...
63
votes
9answers
32k views
BackgroundWorker vs background Thread
I have a stylistic question about the choice of background thread implementation I should use on a windows form app. Currently I have a BackgroundWorker on a form that has an infinite (while(true)) ...
39
votes
5answers
29k views
Example for boost shared_mutex (multiple reads/one write)?
I have a multithreaded app that has to read some data often, and occasionally that data is updated. Right now a mutex keeps access to that data safe, but it's expensive because I would like multiple ...
54
votes
5answers
118k views
How to run a Runnable thread in Android?
I developed one small application to display some text at defined intervals in the android emulator screen.I am using Handler class, small snippet from my code
handler=new Handler();
Runnable r=new ...
41
votes
8answers
39k views
Get a List of all Threads currently running in Java
Is there any way I can get a list of all the running Threads in the current JVM (including the Threads NOT started by my class)?
Is it also possible to get the Thread and Class objects of all Thread ...
7
votes
3answers
784 views
Waiting for multiple SwingWorkers
Please consider the following code fragment:
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.lang.reflect.InvocationTargetException;
...
56
votes
7answers
11k views
Why is volatile not considered useful in multithreaded C or C++ programming?
As demonstrated in this answer I recently posted, I seem to be confused about the utility (or lack thereof) of volatile in multi-threaded programming contexts.
My understanding is this: any time a ...
61
votes
6answers
72k views
Maximum number of threads per process in Linux?
What is the maximum number of threads that can be created by a process under Linux?
How (if possible) can this value be modified?
55
votes
14answers
19k views
Java: How to test methods that call System.exit()?
I've got a few methods that should call System.exit() on certain inputs. Unfortunately, testing these cases causes JUnit to terminate! Putting the method calls in a new Thread doesn't seem to help, ...
158
votes
14answers
148k views
What is the difference between a process and a thread
What is the technical difference between a process and a thread? I get the feeling a word like 'process' is over used and there is also hardware and software threads. How about light-weight processes ...
104
votes
10answers
52k views
What is a race condition?
When writing multi-threaded applications, one of the most common problems experienced are race conditions.
My question to the community, is:
What is a race condition? How do you detect them? How ...
71
votes
13answers
42k views
Windows threading: _beginthread vs _beginthreadex vs CreateThread C++
What's a better way to start a thread?
I'm trying to determine what are the advantages/disadvantages of _beginthread, _beginthreadex and CreateThread. All of these functions return a thread handle ...
23
votes
10answers
18k views
Timeout on a Python function call
I'm calling a function in Python which I know may stall and force me to restart the script. How do I call the function or what do I wrap it in so that if it takes longer than 5 seconds the script ...
66
votes
5answers
41k views
Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)
POSIX allows mutexes to be recursive. That means the same thread can lock the same mutex twice and won't deadlock. Of course it also needs to unlock it twice, otherwise no other thread can obtain the ...
71
votes
7answers
23k views
Thread vs ThreadPool
What is the difference between using a new thread and using a thread from the thread pool? What performance benefits are there and why should I consider using a thread from the pool rather than one ...
26
votes
5answers
18k views
How to stop a java thread gracefully?
I wrote a thread, it is taking too much time to execute and it seems it is not completely done. I want to stop the thread gracefully. Any help ?
18
votes
7answers
30k views
Update UI from Thread
I want to update my UI from a Thread which updates a Progressbar. Unfortunately, when updating the progressbar's drawable from the "runnable" the progressbar disappears!
Changing the progressbars's ...
5
votes
2answers
338 views
Threads with Key Bindings
I'm new to Java graphics and threads, and I'm trying to make a game (specifically, Pong). The idea is that two people can play on the same keyboard (i.e. there are two paddles that are controlled ...
3
votes
4answers
4k views
How cancel the execution of a SwingWorker?
Currently I have two SwingWorker threads doing job on background. If an exception occurs, the method stop to work, but the thread still runnig.
How I do to stop the execution and kill the thread of ...
232
votes
20answers
25k 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 ...
84
votes
4answers
30k views
How to find the Number of CPU Cores via .NET/C#?
Is there a way via .NET/C# to find out the number of CPU cores?
PS This is a straight code question, not a "Should I use multi-threading?" question! :-)
72
votes
13answers
25k views
Why doesn't JavaScript support multithreading?
Is it a deliberate design decision or a problem with our current day browsers which will be rectified in the coming versions?
59
votes
12answers
53k views
107
votes
8answers
25k views
Is the C# static constructor thread safe?
In other words, is this Singleton implementation thread safe:
public class Singleton
{
private static Singleton instance;
private Singleton() { }
static Singleton()
{
...
22
votes
7answers
25k views
Compare using Thread.Sleep and Timer for delayed execution
I have a method which should be delayed running for a specified amount of time.
Should I use
Thread thread = new Thread(() => {
Thread.Sleep(millisecond);
action();
});
...