Which one should choose user and kernel thread

72 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
aditya kuppa On

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

0
user3344003 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.