//Readers Writers Problem -OS Lab
Program:
#include<stdio.h>
#include<pthread.h>
#include<semaphore.h>
sem_t mutex,writeblock;
int data = 0,rcount = 0;
void *reader(void *arg)
{
int f;
f = ((int)arg);
sem_wait(&mutex);
rcount = rcount + 1;
if(rcount==1)
sem_wait(&writeblock);
sem_post(&mutex);
printf("Data read by the reader%d is %d\n",f,data);
sleep(1);
sem_wait(&mutex);
rcount = rcount - 1;
if(rcount==0)
sem_post(&writeblock);
sem_post(&mutex);
}
void *writer(void *arg)
{
int f;
f = ((int) arg);
sem_wait(&writeblock);
data++;
printf("Data writen by the writer%d is %d\n",f,data);
sleep(1);
sem_post(&writeblock);
}
main()
{
int i,b;
pthread_t rtid[5],wtid[5];
sem_init(&mutex,0,1);
sem_init(&writeblock,0,1);
for(i=0;i<=2;i++)
{
pthread_create(&wtid[i],NULL,writer,(void *)i);
pthread_create(&rtid[i],NULL,reader,(void *)i);
}
for(i=0;i<=2;i++)
{
pthread_join(wtid[i],NULL);
pthread_join(rtid[i],NULL);
}
}
thnx :) u just helped me out wid my assignment...cheerio :)
ReplyDeleteThanks :D ,you just helped me with my lab work.
ReplyDeletethanks..
ReplyDelete;)
Delete<.>
Deleteyou are a great man...
ReplyDeletehow to execute???
ReplyDeletethank you so much :) :)
ReplyDeletecc filename.c -lpthread -lrt
ReplyDeleteyou can excute by above format :)
gcc filename.c -o output -pthread && clear && ./output
ReplyDeletecan u tell me which priority is it follow??
ReplyDeleteeither reader or writer or both
give output for the program
ReplyDelete0
Delete0
0
1
2
3
yiyiyi
ReplyDeleteHow to design and implement an Automatic Car Manufacturing System (ACMS) software that is used in automobile assembly plant in Linux platform. The functioning of ACMS is as follows. Different tasks such as assembling of chassis, body, paint, interior assembly, etc. are handled by different units of the system. Each unit is responsible to complete its operation based on the required variants within specified time limit.
ReplyDeleteIf I'm not wrong you have given priority to the reader here?
ReplyDeleteIf possible could anyone explain the code to me.
This is quite educational arrange. It has famous breeding about what I rarity to vouch.
ReplyDeleteColossal proverb. This trumpet is a famous tone to nab to troths. Congratulations on a career well achieved.
This arrange is synchronous s informative impolite festivity to pity. I appreciated what you ok extremely here.
Selenium interview questions and answers
Selenium Online training
Selenium training in Pune
selenium training in USA
selenium training in chennai
TQ
ReplyDeleteWelcome, your blog is great. I have read many of your articles. It's very interesting and meaningful, it helps me have more knowledge about life. picbear
ReplyDeleteoutput is assign but soo many mistake r there plss checkk...
ReplyDeleteThanks for offering us such a useful details. Keep up the great work. You can also check out this awarded Vitamin supplement store for nutritional supplements from leading brands. Nutritional Supplement Store
ReplyDelete