https://github.com/gregoirebrn/philosophers
Handle data used by threads
https://github.com/gregoirebrn/philosophers
multi-threading mutex-locks
Last synced: about 2 months ago
JSON representation
Handle data used by threads
- Host: GitHub
- URL: https://github.com/gregoirebrn/philosophers
- Owner: Gregoirebrn
- Created: 2024-03-13T15:32:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-23T18:01:55.000Z (4 months ago)
- Last Synced: 2025-01-23T19:19:09.980Z (4 months ago)
- Topics: multi-threading, mutex-locks
- Language: C
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Overview
Here are the things you need to know if you want to understand the project:
• One or more philosophers sit at a round table.
There is a large bowl of spaghetti in the middle of the table.• The philosophers alternatively eat, think, or sleep.
While they are eating, they are not thinking nor sleeping;
while thinking, they are not eating nor sleeping;
and, of course, while sleeping, they are not eating nor thinking.• There are also forks on the table. There are as many forks as philosophers.
• Because serving and eating spaghetti with only one fork is very inconvenient, a
philosopher takes their right and their left forks to eat, one in each hand.• When a philosopher has finished eating, they put their forks back on the table and
start sleeping. Once awake, they start thinking again. The simulation stops when
a philosopher dies of starvation.• Every philosopher needs to eat and should never starve.
• Philosophers don’t speak with each other.
• Philosophers don’t know if another philosopher is about to die.
• No need to say that philosophers should avoid dying!