vote up 6 vote down star
1

I'm a newbie at this so please forgive me for my ignorance. Separating different parts of a program into different processes seems (to me) to make a more elegant program then just threading everything. In what scenario would it make sense to make things run on a thread vs separating the program into different processes? When should I use a thread?


Edit:

Anything on how (or if) they act differently with single core and multi core would also be helpful.

flag

14% accept rate

6 Answers

vote up 0 vote down

In addition to the other answers, maintaining and deploying a single process is a lot simpler than having a few executables.

One would use multiple processes/executables to provide a well-defined interface/decoupling so that one part or the other can be reused or reimplemented more easily than keeping all the functionality in one process.

link|flag
vote up 3 vote down

You sure don't sound like a newbie. It's an excellent observation that processes are, in many ways, more elegant. Threads are basically an optimization to avoid too many transitions or too much communication between memory spaces.

Superficially using threads may also seem like it makes your program easier to read and write, because you can share variables and memory between the threads freely. In practice, doing that requires very careful attention to avoid race conditions or deadlocks.

There are operating-system kernels (most notably L4) that try very hard to improve the efficiency of inter-process communication. For such systems one could probably make a convincing argument that threads are pointless.

link|flag
vote up 7 vote down

In Windows world, a process is not an alternative to a thread. Process is just a new address space and security context for one or more threads. Windows thread scheduler only knows about threads. So the question would be "Why should I create a new address space and put a new thread there?".

A new process means completely new virtual address space, new security context therefore creating one requires some work. Context switch between threads on different processes requires OS to remap virtual address space and do a TLB flush. So there is a performance downside of having threads on multiple processes.

Threads on the same process are much more lightweight. They reside on the same memory space and they can share handles, security context. Switching between threads on the same process is much faster because OS only switches registers, not memory mapping.

On the other hand threads on same process are not protected against each other. Threads need to be careful on not to step on other threads' toes. If a thread crashes (unhandled exception), your process hence all other threads in that process will crash. Think of Flash plugin crashing IE. That's why Google Chrome hosts Flash in a separate process, if it crashes Chrome survives.

The performance advantage of threads is one of the reasons why Windows groups many "trusted" services in a few "svchost.exe" processes.

When your process exits, the threads you created are terminated too. If you don't want that you have to use a process.

link|flag
vote up 9 vote down

Well apart from advantages of using thread over process, like:

Advantages:

  • Much quicker to create a thread than a process.
  • Much quicker to switch between threads than to switch between processes.
  • Threads share data easily

Consider few disadvantages too:

  • No security between threads.
  • One thread can stomp on another thread's data.
  • If one thread blocks, all threads in task block.

As to the important part of your question "When should I use a thread?"

Well you should consider few facts that a threads should not alter the semantics of a program. They simply change the timing of operations. As a result, they are almost always used as an elegant solution to performance related problems. Here are some examples of situations where you might use threads:

  • Doing lengthy processing: When a windows application is calculating it cannot process any more messages. As a result, the display cannot be updated.
  • Doing background processing: Some tasks may not be time critical, but need to execute continuously.
  • Doing I/O work: I/O to disk or to network can have unpredictable delays. Threads allow you to ensure that I/O latency does not delay unrelated parts of your application.
link|flag
Are you sure that when 1 thread blocks they all block? What do you mean by block? Like blocked waiting for i/o? What type of threads are you using? I know that PThreads won't block. – scurial Mar 6 at 6:45
1  
Like block waiting for resources. Many people hate it but threads are not isolated as they don't have their own address space. The error cause by a thread can kill the entire process or program because that error affects the entire memory space of all threads use in that process or program. Block !! – harshh Mar 6 at 7:40
vote up 3 vote down

I assume you already know you need a thread or a process, so I'd say the main reason to pick one over the other would be data sharing.

Use of a process means you also need Inter Process Communication (IPC) to get data in and out of the process. This is a good thing if the process is to be isolated though.

link|flag
+1 for mentioning that isolation is a good thing, too – Thilo Mar 6 at 6:14
I like the isolation aspect of processes. – danmine Mar 6 at 6:19
vote up 22 vote down

You'd prefer multiple threads over multiple processes for two reasons:

  1. Inter-thread communication (such as sharing data etc.) is significantly simpler than inter-process communication.
  2. Changing context between threads is faster than between processes. That is, it's quicker for the OS to stop one thread and starting running another than doing the same with two processes.

Example:

Applications with GUIs typically use one thread for the GUI and others for background computation. The spellchecker in MS Office, for example, is a separate thread from the one running the Office user interface. In such applications, using multiple processes instead would result in slower performance and a tough to write and maintain code.

link|flag
+1 Those are the reasons. – Steve Rowe Mar 6 at 6:09
+1 Nicely put Frederick. I guess I would also say that you need to be pretty careful not to arbitrarily create threads in your application. Multi-threading can be dangerous for the initiated. – Cannonade Mar 6 at 6:12
the data sharing is a two-sided coin, though. You can easily mess up the other thread's data... – Thilo Mar 6 at 6:14
Does the speed advantage also apply to multi-core? Does the typical OS usually allow for this? – danmine Mar 6 at 6:16
1  
@Frederick: While you're right in general, you CAN be sure on which cores your threads are gonna run, because (at least on Windows) you can set the processor affinity mask. Is/was useful for timing purposes, where changing the core could result in jumps or (worse) the time going back. – OregonGhost Mar 6 at 7:51
show 2 more comments

Your Answer

Get an OpenID
or

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