What is the difference between a 'thread' and a 'process'?
Answers were Sorted based on User's Feedback
Answer / swaroopa
Process is a program in execution whereas thread is a
separate path of execution in a program. Process & Thread
share almost all datastructure except (thread has it's own
register & stack area). Process is a program under
execution,but thread is a light weight process which has
seperate way of execution.Threads are part of
process.Single process can contain number of threads at a
time.
A process is a collection of virtual memory space, code,
data, and system resources.
All thread with in a process share process
instruction,code & data segment,open file descriptor,signal
handler,userID and GroupID.
Thread has its own set of register including program
counter,stack pointer
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / seshadri sethi
A process is a collection of virtual memory space, code,
data, and system resources. A thread is code that is to be
serially executed within a process. A processor executes
threads, not processes, so each application has at least one
process, and a process always has at least one thread of
execution, known as the primary thread. A process can have
multiple threads in addition to the primary thread
Thread – is stream of executable code within process. They
are light weight process. All thread with in a process
share process instruction,code & data segment,open file
descriptor,signal handler,userID and GroupID. Thread has its
own set of register including program counter,stack pointer
| Is This Answer Correct ? | 1 Yes | 0 No |
A process is a collection of virtual memory space, code,
data, and system resources. A thread is code that is to be
serially executed within a process. A processor executes
threads, not processes, so each application has at least
one process, and a process always has at least one thread
of execution, known as the primary thread
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a command sequence to find the count of each word?
Dear All, Can anybody tell me how to predefind no. of selected rows from a text file.
How to open a read-only file in the shell?
What is the syntax of while loop in shell scripting?
There is a record with fields namely name,roll no.,salary,grade etc.Now,write a script to create a file with multiple records have same combination of fields but with unique roll numbers.The script should work for different names in the input file.
How do I run a bin bash script?
What is the syntax of "grep" command?
How do I run a powershell script?
how to search for vowels a,e,i,o,u appearing in the same sequence in a file
How do you create a shortcut in linux?
Is powershell a language?
How to calculate the number of passed arguments?