Can someone help me to know whether it is possible to send to two different variables to a function which used to send in pthread_create
?
void *handler(void *parameter){
//some code
return 0;
}
is it possible to have function like this
void *handler(void *parameter, void *parameter2){
//some code
return 0;
}
If possible how can I use this with pthread_create
?
Thanks beforehand.