What is the difference between a process task and threads
and what are the things that are acquired by the child
process from the parent process
Answer Posted / kiran kumar yakkala
process-independent flow of control,created by fork
(),copies the address space of parent process(all the
contents of parent process i.e data,text,bss ..),resources
are too many, scheduled by system scheduler(cpu)
thread-independent flow of control,created by pthread or
kthreads, resources are less(just pid,ppid,own stack..)so
thats why light weight process, scheduled by thread library
which you are using (ex. pthread , kthread).
usually process can have any no of threads
but threads cannot have process( general rule).
Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
How does socket communication work?
What are the best linux system programming interview questions you've ever asked or been asked?
How to test socket connection in linux?
What is the Use of the inet_makeaddr() Function?
How to Bind Addresses to a Socket?
How to Initialize a Wild Internet Address?
How to Form Traditional Local Addresses?
What are Anonymous Calls?
How socket is created?
Can a socket have multiple connections?
What are the Advantages of TCP/IP?
What is the Use of the inet_ntoa() Function?
What is a socket in linux?
How to Define a Socket?
How TCP/IP Handles Lost Packets?