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?
|
feedback
|
|
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 You could use global array managed by the main thread for storing these values. Here's the idea (pseudocode):
Each thread finds local maximum But at the end you will have to use | |||||||||||
|
feedback
|
i cant wait for any thread to complete with pthread_join? – Tio Pepe Feb 24 at 12:03