Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Parallel Processing ProgramsRSS Feeds

Program of 2-thread for Linux Using the POSIX threads library. Once the thread spawning is done, the first thread should wait for user input

Posted By: Easy Tutor     Category: C Programming     Views: 1640

Using the POSIX threads library, write a 2-thread program for Linux. Once the thread spawning is done, the first thread (T1) should wait for user input. T1 should produce no output, but should shut down the whole process once the user types a q or a Q. T2 should take no input, but should generate a list of prime numbers starting at 2 and going as high as it can in the time allowed. From the user point of view, this program will generate primes until told to quit.

Code for Program of 2-thread for Linux Using the POSIX threads library. Once the thread spawning is done, the first thread should wait for user input in C Programming

# include <stdio.h>
# include <pthread.h>

void *t1(void *);

int main()
{
    pthread_t tid;
    int iCount,iNumber=2;
    int PrimeFlag=1;
    pthread_create(&tid,NULL,t1,NULL);
    for(;;)
    {
        for(iCount=2;iCount<iNumber;iCount++)
        {        
            if(iNumber % iCount==0)
            {
                PrimeFlag=0;
                break;
            }
        }        
        if(PrimeFlag==1)
        {
            printf("%d \t",iNumber);
        }
        PrimeFlag=1;
        iNumber++;
        if(iNumber % 10 ==0)
        {
            usleep(1);
        }

    }    
    return 0;
}

void *t1(void *p)
{
    char ch;
    while(1)
    {
        ch=getchar();
        if(ch=='q' || ch=='Q')
        {
            exit(0);

        }
    }
}
  
Share: 



Easy Tutor
Easy Tutor author of Program of 2-thread for Linux Using the POSIX threads library. Once the thread spawning is done, the first thread should wait for user input is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!