-1

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

mrsengineer
  • 27
  • 2
  • 8

2 Answers2

1

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.

user3344003
  • 20,574
  • 3
  • 26
  • 62
0

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