In Linux,
what is the definition of a light weight process?
Is a light weight process defined as any thing created by
clone()system call? (That is my understanding from the book Understanding the Linux Kernel)Is a regular process a light weight process? (I guess yes)
- Does Linux have a concept called "heavy weight process"? (I guess it means a regular process, so a heavy weight process is still a light weight process?)
Thanks.