-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dining philosophers problem in C #6750
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
code/operating_system/src/DiningPhilosophersProblem/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# What is Dining Philosophers Problem in OS | ||
|
||
Five philosophers are sitting around a circular table and their job is to think and eat alternatively. A bowl of noodles is placed at the center of the table along with five chopsticks for each of the philosophers. To eat a philosopher needs both their right and a left chopstick. A philosopher can only eat if both immediate left and right chopsticks of the philosopher is available. In case if both immediate left and right chopsticks of the philosopher are not available then the philosopher puts down their (either left or right) chopstick and starts thinking again. | ||
|
||
The dining philosopher demonstrates a large class of concurrency control problems hence it's a classic synchronization problem. | ||
|
||
# What are Semaphores? | ||
|
||
Semaphores are integer variables that are used to solve the critical section problem by using two atomic operations, wait and signal that are used for process synchronization. | ||
|
||
![Alt text](image.png) |
87 changes: 87 additions & 0 deletions
87
code/operating_system/src/DiningPhilosophersProblem/diningphilosopher_semaphores.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
#include <pthread.h> | ||
#include <semaphore.h> | ||
#include <stdio.h> | ||
#include <wait.h> | ||
#include <unistd.h> | ||
#define N 5 | ||
#define THINKING 2 | ||
#define HUNGRY 1 | ||
#define EATING 0 | ||
#define LEFT (phnum + 4) % N | ||
#define RIGHT (phnum + 1) % N | ||
int state[N]; | ||
int phil[N] = { 0, 1, 2, 3, 4 }; | ||
sem_t mutex; | ||
sem_t S[N]; | ||
void test(int phnum) | ||
{ | ||
if (state[phnum] == HUNGRY | ||
&& state[LEFT] != EATING | ||
&& state[RIGHT] != EATING) { | ||
// state that eating | ||
state[phnum] = EATING; | ||
sleep(2); | ||
printf("Philosopher %d takes fork %d and %d\n", | ||
phnum + 1, LEFT + 1, phnum + 1); | ||
printf("Philosopher %d is Eating\n", phnum + 1); | ||
// sem_post(&S[phnum]) has no effect | ||
// during takefork | ||
// used to wake up hungry philosophers | ||
// during putfork | ||
sem_post(&S[phnum]); | ||
} | ||
} | ||
// take up chopsticks | ||
void take_fork(int phnum) | ||
{ | ||
sem_wait(&mutex); | ||
// state that hungry | ||
state[phnum] = HUNGRY; | ||
printf("Philosopher %d is Hungry\n", phnum + 1); | ||
// eat if neighbours are not eating | ||
test(phnum); | ||
sem_post(&mutex); | ||
// if unable to eat wait to be signalled | ||
sem_wait(&S[phnum]); | ||
sleep(1); | ||
} | ||
// put down chopsticks | ||
void put_fork(int phnum) | ||
{ | ||
sem_wait(&mutex); | ||
// state that thinking | ||
state[phnum] = THINKING; | ||
printf("Philosopher %d putting fork %d and %d down\n", | ||
phnum + 1, LEFT + 1, phnum + 1); | ||
printf("Philosopher %d is thinking\n", phnum + 1); | ||
test(LEFT); | ||
test(RIGHT); | ||
sem_post(&mutex); | ||
} | ||
void* philosopher(void* num) | ||
{ | ||
while (1) { | ||
int* i = num; | ||
sleep(1); | ||
take_fork(*i); | ||
sleep(0); | ||
put_fork(*i); | ||
} | ||
} | ||
int main() | ||
{ | ||
int i; | ||
pthread_t thread_id[N]; | ||
// initialize the semaphores | ||
sem_init(&mutex, 0, 1); | ||
for (i = 0; i < N; i++) | ||
sem_init(&S[i], 0, 0); | ||
for (i = 0; i < N; i++) { | ||
// create philosopher processes | ||
pthread_create(&thread_id[i], NULL, | ||
philosopher, &phil[i]); | ||
printf("Philosopher %d is thinking\n", i + 1); | ||
} | ||
for (i = 0; i < N; i++) | ||
pthread_join(thread_id[i], NULL); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Content should be original.