0

Hii ALL, I started reading about Threads and came to know about Thread uses software and Process uses hardware to protect datastructure...But could anyone elaborate this fact more??

Amit Singh Tomar
  • 8,380
  • 27
  • 120
  • 199

1 Answers1

1

In Linux both threads & process are same, only difference between them sharing of Virtual memory. Threads run in address space of process. Threads also have a associated task_struct.

Gyan Gupta
  • 986
  • 8
  • 15