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 in languages like Erlang? Is there a definitive reason to use one term over the other?
|
Both processes and threads are independent sequences of execution. The typical difference is that threads (of the same process) run in a shared memory space, while processes run in separate memory spaces. I'm not sure what "hardware" vs "software" threads might be referring to. Threads are an operating environment feature, rather than a CPU feature (though the CPU typically has operations that make threads efficient). Erlang uses the term "process" because it does not expose a shared-memory multiprogramming model. Calling them "threads" would imply that they have shared memory. |
|||||||||||||||||
|
|
Process Thread Found this on MSDN here: http://msdn.microsoft.com/en-us/library/ms681917(VS.85).aspx Microsoft Windows supports preemptive multitasking, which creates the effect of simultaneous execution of multiple threads from multiple processes. On a multiprocessor computer, the system can simultaneously execute as many threads as there are processors on the computer. |
|||||||||
|
|
Process:
Thread:
I borrowed the above info from the Knowledge Quest! blog available at: http://kquest.co.cc/2010/03/program-process-task-thread/ Thanks. |
|||
|
|
The major difference between threads and processes is:
|
||||
|
|
Stolen from here. |
|||
|
|
A process is a collection of code, memory, data and other resources. A thread is a sequence of code that is executed within the scope of the process. You can (usually) have multiple threads executing concurrently within the same process. |
|||
|
|
|
A process is an executing instance of an application. What does that mean? Well, for example, when you double-click the Microsoft Word icon, you start a process that runs Word. A thread is a path of execution within a process. Also, a process can contain multiple threads. When you start Word, the operating system creates a process and begins executing the primary thread of that process. It’s important to note that a thread can do anything a process can do. But since a process can consist of multiple threads, a thread could be considered a ‘lightweight’ process. Thus, the essential difference between a thread and a process is the work that each one is used to accomplish. Threads are used for small tasks, whereas processes are used for more ‘heavyweight’ tasks – basically the execution of applications. Another difference between a thread and a process is that threads within the same process share the same address space, whereas different processes do not. This allows threads to read from and write to the same data structures and variables, and also facilitates communication between threads. Communication between processes – also known as IPC, or inter-process communication – is quite difficult and resource-intensive. |
|||
|
|
Both threads and processes are atomic units of OS resource allocation (i.e. there is a concurrency model describing how CPU time is divided between them, and the model of owning other OS resources). There is a difference in:
Greg Hewgill above was correct about the Erlang meaning of the word "process", and here there's a discussion of why Erlang could do processes lightweight. |
||||
|
|
|
Trying to answer this question relating to Java world. A process is an execution of a program but a thread is a single execution sequence within the process. A process can contain multiple threads. A thread is sometimes called a lightweight process. For example: Example 1: A JVM runs in a single process and threads in a JVM share the heap belonging to that process. That is why several threads may access the same object. Threads share the heap and have their own stack space. This is how one thread’s invocation of a method and its local variables are kept thread safe from other threads. But the heap is not thread-safe and must be synchronized for thread safety. Example 2: A program might not be able to draw pictures by reading keystrokes. The program must give its full attention to the keyboard input and lacking the ability to handle more than one event at a time will lead to trouble. The ideal solution to this problem is the seamless execution of two or more sections of a program at the same time. Threads allows us to do this. Here Drawing picture is a process and reading keystroke is sub process (thread). |
||||
|
|
|
1.Thread run in shared memory space but process run in separate memory space 2.Thread is light weight process but process is heavy weight process. 3.Thread is subtype of process. |
|||
|
|
|
Process: program under execution is known as process Thread: Thread is a functionality which is executed with the other part of the program based on the concept of "one with other" so thread is a part of process.. |
|||
|
|
|
To explain more with respect to concurrent programming 1) A process has a self-contained execution environment. A process generally has a complete, private set of basic run-time resources; in particular, each process has its own memory space. 2) Threads exist within a process — every process has at least one. Threads share the process's resources, including memory and open files. This makes for efficient, but potentially problematic, communication. Keeping average person in mind, In your computer, open Microsoft word and web browser, then we call this as two processes. In Microsoft word, you type some thing and it gets automatically saved. Now, you would have observed editing and saving happens in parallel. This is called thread. |
||||
|
|
|
this is a good write up of process vs threads http://www.programmerinterview.com/index.php/operating-systems/thread-vs-process/ |
|||
|
|
|
This is what got it from one of the articles in code project. I guess, It explains everything needed clearly.
|
||||
|
|



