'pthread_create (thread, attr, start_routine, arg)'
Can i call a non static function creating threads which is having more than one arguments, since pthread_create() will only take one argument and that is of void type.
I am using threads in my class which is having many functions which perform heavy task so i want to execute each function on their own threads but i am not able to do that since Pthrad_create only takes one argument and also the function of type static, so how can i solve this issue.
Thanks.