下列哪一项关于用户级和内核级线程的说法是不正确的?
| USER LEVEL THREAD | KERNEL LEVEL THREAD |
|---|---|
| User thread are implemented by users. | kernel threads are implemented by OS. |
| OS doesn’t recognized user level threads. | Kernel threads are recognized by OS. |
| Implementation of User threads is easy. | Implementation of Kernel thread is complicated. |
| Context switch time is less. | Context switch time is more. |
| Context switch requires no hardware support. | Hardware support is needed. |
| If one user level thread perform blocking operation then entire process will be blocked. | If one kernel thread perform blocking operation then another thread can continue execution. |