Hi,
i am new to pthread area.
i like to pass the dynamic argument into the thread function.
example
function(void *value)
{
printf("%s",(char *)value);
}
here i like to pass dynamic argument when thread is running. so is it possible in pthread?
please share your ideas...