3
935views
Explain Linux Threads with Example.
1 Answer
| written 3.6 years ago by |
Solution:
Linux Threads:
Linux provides the fork() system call with the traditional functionality of duplicating a process.
Linux also provides the ability to create threads using the clone () system call. However, Linux does not distinguish between processes and threads.

Linux generally uses the term task—rather than process or thread—when …