I am trying to understand threading. I am trying to have multiple threads compute primes. I want one thread to compute the first number then have the next thread compute the next number and so forth then whichever thread finds the prime print it.
So, start with 1 to 50. pass a new number toa new thread. I think thats what we want.
Heres what i have so far.
void* compute_prime (void* arg)
{
//pthread_mutex_lock(&lock);
int candidate = 2;
int n = *((int*) arg);
while (1) {
int factor;
int is_prime = 1;
/* Test primality by successive division. */
for (factor = 2; factor < candidate; ++factor)
if (candidate % factor == 0) {
is_prime = 0;
break;
}
/* Is this the prime number we're looking for? */
if (is_prime) {
if (--n == 0)
/* Return the desired prime number as the thread return value. */
return (void*) candidate;
}
++candidate;
}
return NULL;
}
int main ()
{
int which_prime = 50;
int isPrime1, isPrime2, isPrime3, isPrime4;
fprintf (stderr, "main thread pid is %d\n", (int) getpid ());
for(master_list; master_list < which_prime; master_list++)
{
//do{
// pthread_mutex_lock(&lock);
pthread_create (&thread1, NULL, &compute_prime, &master_list);
//master_list++;
//pthread_mutex_unlock(&lock);
//}while(master_list < which_prime);
}
return 0;
}
my output.
main thread pid is 508
Thread1 Found the prime number: 3.
Thread2 Found the prime number: 3.
Thread3 Found the prime number: 3.
Thread4 Found the prime number: 3.
Thread1 Found the prime number: 7.
Thread2 Found the prime number: 7.
Thread3 Found the prime number: 7.
Thread4 Found the prime number: 7.
Thread1 Found the prime number: 13.
Thread2 Found the prime number: 13.
Thread3 Found the prime number: 13.
Thread4 Found the prime number: 13.
etc....
Which is somewhat what i want. But not every thread should find the same prime. They should be finding different primes. Even if i increment the variable before the thread it still wont work. I commented out the code that i tried to get it to work. what do i need to do? I hope i was clear.