[algogeeks] threading

2011-05-26 Thread jagannath
Pthread is a user-level thread or kernel-level?.Java supports user-level threading i know ,but while doing a project on web- crawling i marked the cpu-utilization in conky(ubuntu) ,both the cores' utilization increased drastically as program ran.I know that in user-level threading kernel is not

Re: [algogeeks] threading

2011-05-26 Thread anshu mishra
it is os responsibility to map user level thread to kernel level thread. Usually os implements many to many mapping. In pthread we can bind a particular thread to particular processor or set of processor. -- You received this message because you are subscribed to the Google Groups Algorithm