Which one should choose user and kernel thread

67 Views Asked by At

For a program, I only worked with user threads or kernel threads. Which one should I choose?

2

There are 2 best solutions below

0
On

If you have the choice between "user" and "Kernel" threads you should always pick "kernel."

There are some completely useless books on Operating Systems that claim advantages for "user" threads. That is total BS.

0
On

accessing and modifying kernel threads isn't easy and feasible. It may even crash your system.