Question: How can one create a user level thread or kernel level thread using pthread_create
?
Note: I checked the documentation of pthread_create
in this link and I didn't find any parameter that can be specified to tell OS to create either user level thread or the kernel level thread. So if there is no parameter then when thread created using pthread_create
by default is user level or kernel level?
Any information or hint would be great.
Thanks.