pastebin - collaborative debugging tool
kpaste.net RSS


Untitled
Posted by Anonymous on Mon 4th Aug 2014 03:54
raw | new post

  1. #include<stdio.h>
  2. #include<semaphore.h>
  3. #include<pthread.h>
  4.  
  5. #define N 5
  6. #define THINKING 0
  7. #define HUNGRY 1
  8. #define EATING 2
  9.  
  10. #define LEFT (ph_num+4)%N
  11. #define RIGHT (ph_num+1)%N
  12.  
  13. sem_t mutex;
  14. sem_t S[N];
  15.  
  16. void * philospher(void *num);
  17. void take_fork(int);
  18. void put_fork(int);
  19. void test(int);
  20.  
  21. int state[N];
  22. int phil_num[N]={0,1,2,3,4};
  23.  
  24. int main()
  25. {
  26.     int i;
  27.     pthread_t thread_id[N];
  28.     sem_init(&mutex,0,1);
  29.     for(i=0;i<N;i++)
  30.         sem_init(&S[i],0,0);
  31.     for(i=0;i<N;i++)
  32.     {
  33.         pthread_create(&thread_id[i],NULL,philospher,&phil_num[i]);
  34.         printf("Philosopher %d is thinking\n",i+1);
  35.     }
  36.     for(i=0;i<N;i++)
  37.         pthread_join(thread_id[i],NULL);
  38. }
  39.  
  40. void *philospher(void *num)
  41. {
  42.     while(1)
  43.     {
  44.         int *i = num;
  45.         sleep(1);
  46.         take_fork(*i);
  47.         sleep(0);
  48.         put_fork(*i);
  49.     }
  50. }
  51.  
  52. void take_fork(int ph_num)
  53. {
  54.     sem_wait(&mutex);
  55.     state[ph_num] = HUNGRY;
  56.     printf("Philosopher %d is Hungry\n",ph_num+1);
  57.     test(ph_num);
  58.     sem_post(&mutex);
  59.     sem_wait(&S[ph_num]);
  60.     sleep(1);
  61. }
  62.  
  63. void test(int ph_num)
  64. {
  65.     if (state[ph_num] == HUNGRY && state[LEFT] != EATING && state[RIGHT] != EATING)
  66.     {
  67.         state[ph_num] = EATING;
  68.         sleep(2);
  69.         printf("Philosopher %d takes fork %d and %d\n",ph_num+1,LEFT+1,ph_num+1);
  70.         printf("Philosopher %d is Eating\n",ph_num+1);
  71.         sem_post(&S[ph_num]);
  72.     }
  73. }
  74.  
  75. void put_fork(int ph_num)
  76. {
  77.     sem_wait(&mutex);
  78.     state[ph_num] = THINKING;
  79.     printf("Philosopher %d putting fork %d and %d down\n",ph_num+1,LEFT+1,ph_num+1);
  80.     printf("Philosopher %d is thinking\n",ph_num+1);
  81.     test(LEFT);
  82.     test(RIGHT);
  83.     sem_post(&mutex);
  84. }
  85.  
  86. ---------------------------------------------------------------------
  87.  
  88. #include <pthread.h>
  89. #include <stdio.h>
  90. #include <stdlib.h>
  91. #include <semaphore.h>
  92.  
  93. #define BUFF_SIZE   5           /* total number of slots */
  94. #define NP          3           /* total number of producers */
  95. #define NC          3           /* total number of consumers */
  96. #define NITERS      4           /* number of items produced/consumed */
  97.  
  98. typedef struct {
  99.     int buf[BUFF_SIZE];   /* shared var */
  100.     int in;               /* buf[in%BUFF_SIZE] is the first empty slot */
  101.     int out;              /* buf[out%BUFF_SIZE] is the first full slot */
  102.     sem_t full;           /* keep track of the number of full spots */
  103.     sem_t empty;          /* keep track of the number of empty spots */
  104.     sem_t mutex;          /* enforce mutual exclusion to shared data */
  105. } sbuf_t;
  106.  
  107. sbuf_t shared;
  108.  
  109. void *Producer(void *arg)
  110. {
  111.     int i, item, index;
  112.  
  113.     index = (int)arg;
  114.  
  115.     for (i=0; i < NITERS; i++) {
  116.  
  117.         /* Produce item */
  118.         item = i;
  119.  
  120.         /* Prepare to write item to buf */
  121.  
  122.         /* If there are no empty slots, wait */
  123.         sem_wait(&shared.empty);
  124.         /* If another thread uses the buffer, wait */
  125.         sem_wait(&shared.mutex);
  126.         shared.buf[shared.in] = item;
  127.         shared.in = (shared.in+1)%BUFF_SIZE;
  128.         printf("[P%d] Producing %d ...\n", index, item); fflush(stdout);
  129.         /* Release the buffer */
  130.         sem_post(&shared.mutex);
  131.         /* Increment the number of full slots */
  132.         sem_post(&shared.full);
  133.  
  134.         /* Interleave  producer and consumer execution */
  135.         if (i % 2 == 1) sleep(1);
  136.     }
  137.     return NULL;
  138. }
  139. void *Consumer(void *arg)
  140. {
  141.     int i, item, index;
  142.  
  143.     index = (int)arg;
  144.  
  145.     for (i=0; i < NITERS; i++) {
  146.  
  147.         /* Produce item */
  148.         item = i;
  149.  
  150.         /* Prepare to write item to buf */
  151.  
  152.         /* If there are no empty slots, wait */
  153.         sem_wait(&shared.empty);
  154.         /* If another thread uses the buffer, wait */
  155.         sem_wait(&shared.mutex);
  156.         shared.buf[shared.in] = item;
  157.         shared.in = (shared.in+1)%BUFF_SIZE;
  158.         printf("[P%d] Consuming %d ...\n", index, item); fflush(stdout);
  159.         /* Release the buffer */
  160.         sem_post(&shared.mutex);
  161.         /* Increment the number of full slots */
  162.         sem_post(&shared.full);
  163.  
  164.         /* Interleave  producer and consumer execution */
  165.         if (i % 2 == 1) sleep(1);
  166.     }
  167.     return NULL;
  168. }
  169.  
  170. int main()
  171. {
  172.     pthread_t idP, idC;
  173.     int index;
  174.  
  175.     sem_init(&shared.full, 0, 0);
  176.     sem_init(&shared.empty, 0, BUFF_SIZE);
  177.  
  178.     sem_init(&shared.mutex, 0, 1);
  179.  
  180.     for (index = 0; index < NP; index++)
  181.     {
  182.        /* Create a new producer */
  183.        pthread_create(&idP, NULL, Producer, (void*)index);
  184.     }
  185.  
  186.     for (index = 0; index < NC; index++)
  187.     {
  188.        /* Create a new producer */
  189.        pthread_create(&idP, NULL, Consumer, (void*)index);
  190.     }
  191.     pthread_exit(NULL);
  192. }
  193.  
  194. -------------------------------------------------------------------------------
  195.  
  196. #include <stdio.h>
  197. #include <unistd.h>
  198. #include <sys/types.h>
  199.  
  200. int main()
  201. {
  202.         int     fd[2], nbytes;
  203.         pid_t   cpid;
  204.         char    string[] = "Message From Child\n",tmp;
  205.         char    readbuffer[80];
  206.                 int idp,i,k;
  207.         pipe(fd);
  208.         cpid = fork();
  209.         if(cpid == -1)
  210.         {
  211.                 perror("fork");
  212.                 exit(1);
  213.         }
  214.  
  215.         if(cpid == 0)
  216.         {
  217.                                 printf("Hi In child process,\n My parent is  %i \n",getppid());
  218.                                 idp=getpid();
  219.                                 for(i=0;idp;i++)
  220.                                 {
  221.                                         string[i]=(idp%10)+'0';
  222.                                         idp/=10;
  223.                                 }
  224.                                 string[i]=0;
  225.                                 k=i-1;
  226.                                 while(k>i/2){tmp=string[k];string[k]=string[i-k-1];string[i-k-1]=tmp;k--;}
  227.                              printf("Sending my pid to parent : %s \n",string);
  228.  
  229.                 close(fd[0]);
  230.                                 write(fd[1], string, (strlen(string)+1));
  231.                 exit(0);
  232.         }
  233.         else
  234.         {
  235.                 close(fd[1]);
  236.                                 nbytes = read(fd[0], readbuffer, sizeof(readbuffer));
  237.                 printf("Hi , In parent process. My PID is : %i \n",getpid());
  238.                 printf("My child sending its PID : %s\n", readbuffer);
  239.         }
  240.  
  241.         return(0);
  242. }
  243. ---------------------------------------------------------------------------------------------------

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.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at