Attaching Memeber function of a class in pthread
Posted
by Sandeep
on Stack Overflow
See other posts from Stack Overflow
or by Sandeep
Published on 2010-03-17T06:16:13Z
Indexed on
2010/03/17
6:21 UTC
Read the original article
Hit count: 237
pthread_t thread1; pthread_create(&thread1,NULL,.......,NULL);// Here I want to attach a thread to a member funtion of class
How can i pass the Member function of a class in the above code.
© Stack Overflow or respective owner