I want to find max number for each row of 2d array with one thread for each row,But i cant wait for any thread to complete with pthread_join,So what should i do?

link|improve this question
1  
First, you should post some code that you tried and that did not work for you. – dasblinkenlight Feb 24 at 11:59
1  
what have you tried? what doesn't work? – J.F. Sebastian Feb 24 at 11:59
1  
What do you mean with i cant wait for any thread to complete with pthread_join? – Tio Pepe Feb 24 at 12:03
feedback

1 Answer

up vote 1 down vote accepted

From what I understand you want to split your 2D array into 1D arrays and pass them to threads, buy you don't know what to do when each of these threads finds maximum in its "own" array - and you don't want to pass this value to pthread_exit() and retrieve it by pthread_join() in the main thread.

You could use global array managed by the main thread for storing these values. Here's the idea (pseudocode):

int* max; // global

thread(...){
int localMax = 0;
...
max[rowIndex] = localMax;
}

// main thread:
max = malloc (rowCount * sizeof(int));
...
free(max);

Each thread finds local maximum localMax in given array (row) and stores it into array max.

But at the end you will have to use pthread_join so that you know that all threads have finished their work.

link|improve this answer
In 2d array i want to find max in each row by threads. – Davood Hanifi Feb 24 at 12:31
@DavoodHanifi: I have updated my answer. – LihO Feb 24 at 12:50
thank you LihO. – Davood Hanifi Feb 24 at 13:12
@DavoodHanifi: You're welcome. I'd appreciate if you accept my answer if it has helped you. – LihO Feb 24 at 13:13
:what should i do? – Davood Hanifi Feb 24 at 13:33
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.