Hi,
How to set the name for thread in linux using c, c++.
you have to write your own class for that.. threads are recognized with their id's.
Thread's are identified by the thread variable, created by pthread_t API
AS :
pthread_t thread1;
Thanks
Madan