1,296 views
1 votes
1 votes
Which one of the following  is false about user threads

1. User threads can switch fast since it does noy invoke kernel

2.user threads are light weight since they do not require system call

3.kernel is not aware of the behavior  of every user threads ie if it is blocking or run able

4.none of these

1 Answer

0 votes
0 votes
I think to create user level thread we don't need a system call but it doesn't mean that user thread can't make system call.

e.g one thread can request for an hard-disk by making a system call.

So the 2nd options seems right but still ambiguous.

Related questions

1 votes
1 votes
1 answer
4