Jun 30, 2011 at 11:07am
Hi,
How to set the name for thread in linux using c, c++.
Jun 30, 2011 at 5:28pm
you have to write your own class for that.. threads are recognized with their id's.
Jul 5, 2011 at 7:09am
Thread's are identified by the thread variable, created by pthread_t API
AS :
pthread_t thread1;
Thanks
Madan