- #include<stdio.h>
- #include<semaphore.h>
- #include<pthread.h>
- #define N 5
- #define THINKING 0
- #define HUNGRY 1
- #define EATING 2
- #define LEFT (ph_num+4)%N
- #define RIGHT (ph_num+1)%N
- sem_t mutex;
- sem_t S[N];
- void * philospher(void *num);
- void take_fork(int);
- void put_fork(int);
- void test(int);
- int state[N];
- int phil_num[N]={0,1,2,3,4};
- int main()
- {
- int i;
- pthread_t thread_id[N];
- sem_init(&mutex,0,1);
- for(i=0;i<N;i++)
- sem_init(&S[i],0,0);
- for(i=0;i<N;i++)
- {
- pthread_create(&thread_id[i],NULL,philospher,&phil_num[i]);
- printf("Philosopher %d is thinking\n",i+1);
- }
- for(i=0;i<N;i++)
- pthread_join(thread_id[i],NULL);
- }
- void *philospher(void *num)
- {
- while(1)
- {
- int *i = num;
- sleep(1);
- take_fork(*i);
- sleep(0);
- put_fork(*i);
- }
- }
- void take_fork(int ph_num)
- {
- sem_wait(&mutex);
- state[ph_num] = HUNGRY;
- printf("Philosopher %d is Hungry\n",ph_num+1);
- test(ph_num);
- sem_post(&mutex);
- sem_wait(&S[ph_num]);
- sleep(1);
- }
- void test(int ph_num)
- {
- if (state[ph_num] == HUNGRY && state[LEFT] != EATING && state[RIGHT] != EATING)
- {
- state[ph_num] = EATING;
- sleep(2);
- printf("Philosopher %d takes fork %d and %d\n",ph_num+1,LEFT+1,ph_num+1);
- printf("Philosopher %d is Eating\n",ph_num+1);
- sem_post(&S[ph_num]);
- }
- }
- void put_fork(int ph_num)
- {
- sem_wait(&mutex);
- state[ph_num] = THINKING;
- printf("Philosopher %d putting fork %d and %d down\n",ph_num+1,LEFT+1,ph_num+1);
- printf("Philosopher %d is thinking\n",ph_num+1);
- test(LEFT);
- test(RIGHT);
- sem_post(&mutex);
- }
- ---------------------------------------------------------------------
- #include <pthread.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <semaphore.h>
- #define BUFF_SIZE 5 /* total number of slots */
- #define NP 3 /* total number of producers */
- #define NC 3 /* total number of consumers */
- #define NITERS 4 /* number of items produced/consumed */
- typedef struct {
- int buf[BUFF_SIZE]; /* shared var */
- int in; /* buf[in%BUFF_SIZE] is the first empty slot */
- int out; /* buf[out%BUFF_SIZE] is the first full slot */
- sem_t full; /* keep track of the number of full spots */
- sem_t empty; /* keep track of the number of empty spots */
- sem_t mutex; /* enforce mutual exclusion to shared data */
- } sbuf_t;
- sbuf_t shared;
- void *Producer(void *arg)
- {
- int i, item, index;
- index = (int)arg;
- for (i=0; i < NITERS; i++) {
- /* Produce item */
- item = i;
- /* Prepare to write item to buf */
- /* If there are no empty slots, wait */
- sem_wait(&shared.empty);
- /* If another thread uses the buffer, wait */
- sem_wait(&shared.mutex);
- shared.buf[shared.in] = item;
- shared.in = (shared.in+1)%BUFF_SIZE;
- printf("[P%d] Producing %d ...\n", index, item); fflush(stdout);
- /* Release the buffer */
- sem_post(&shared.mutex);
- /* Increment the number of full slots */
- sem_post(&shared.full);
- /* Interleave producer and consumer execution */
- if (i % 2 == 1) sleep(1);
- }
- return NULL;
- }
- void *Consumer(void *arg)
- {
- int i, item, index;
- index = (int)arg;
- for (i=0; i < NITERS; i++) {
- /* Produce item */
- item = i;
- /* Prepare to write item to buf */
- /* If there are no empty slots, wait */
- sem_wait(&shared.empty);
- /* If another thread uses the buffer, wait */
- sem_wait(&shared.mutex);
- shared.buf[shared.in] = item;
- shared.in = (shared.in+1)%BUFF_SIZE;
- printf("[P%d] Consuming %d ...\n", index, item); fflush(stdout);
- /* Release the buffer */
- sem_post(&shared.mutex);
- /* Increment the number of full slots */
- sem_post(&shared.full);
- /* Interleave producer and consumer execution */
- if (i % 2 == 1) sleep(1);
- }
- return NULL;
- }
- int main()
- {
- pthread_t idP, idC;
- int index;
- sem_init(&shared.full, 0, 0);
- sem_init(&shared.empty, 0, BUFF_SIZE);
- sem_init(&shared.mutex, 0, 1);
- for (index = 0; index < NP; index++)
- {
- /* Create a new producer */
- pthread_create(&idP, NULL, Producer, (void*)index);
- }
- for (index = 0; index < NC; index++)
- {
- /* Create a new producer */
- pthread_create(&idP, NULL, Consumer, (void*)index);
- }
- pthread_exit(NULL);
- }
- -------------------------------------------------------------------------------
- #include <stdio.h>
- #include <unistd.h>
- #include <sys/types.h>
- int main()
- {
- int fd[2], nbytes;
- pid_t cpid;
- char string[] = "Message From Child\n",tmp;
- char readbuffer[80];
- int idp,i,k;
- pipe(fd);
- cpid = fork();
- if(cpid == -1)
- {
- perror("fork");
- exit(1);
- }
- if(cpid == 0)
- {
- printf("Hi In child process,\n My parent is %i \n",getppid());
- idp=getpid();
- for(i=0;idp;i++)
- {
- string[i]=(idp%10)+'0';
- idp/=10;
- }
- string[i]=0;
- k=i-1;
- while(k>i/2){tmp=string[k];string[k]=string[i-k-1];string[i-k-1]=tmp;k--;}
- printf("Sending my pid to parent : %s \n",string);
- close(fd[0]);
- write(fd[1], string, (strlen(string)+1));
- exit(0);
- }
- else
- {
- close(fd[1]);
- nbytes = read(fd[0], readbuffer, sizeof(readbuffer));
- printf("Hi , In parent process. My PID is : %i \n",getpid());
- printf("My child sending its PID : %s\n", readbuffer);
- }
- return(0);
- }
- ---------------------------------------------------------------------------------------------------
Untitled
Posted by Anonymous on Mon 4th Aug 2014 03:54
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.