i have multi thread application in which i m creating thread like this
int main(int argc,char *argv[])
{
pthread_t thread_id[argc-1];
int i;
struct parameter thread_data[argc-1];
int status;
for(i=0;i<argc-1;i++)
{
thread_data[i].ip_filename = argv[i+1];
strcpy (thread_data[i].op_filename,argv[i+1]);
strcat (thread_data[i].op_filename,".h264");
}
for(i=0;i<argc-1;i++)
{
pthread_create (&thread_id[i], NULL , &thread_function, &thread_data[i]);
}
}
now in thread function
i want to redirect stderr & stdout in one separate file as per thread
somethig like thread log file
how can i do so.?
Edit :
if thread specific prints can be displayed on different terminal..? i mean if there are 2 thread then it open 2 terminal & prints each threads data on different terminal