Skip to content

Implementation of Concurrency Programming problem, Dining Philosophers.

License

Notifications You must be signed in to change notification settings

Samuellucas97/Dining-Philosophers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status License MIT

Dining Philosophers Problem

Introduction

This folder contains the implementation of the Concurrency Programming problem, Dining Philosophers. Given this, it refers to one of the activities of the Concurrency Programming discipline taught by dr. Nélio Cacho Bachelor of Information Technology at the Federal University of Rio Grande do Norte (UFRN).

Prerequisites

You need the following programs to use this repository:

  • JDK 11

This project was loaded on Eclipse using above configurations

About the algorithm

In resume, Five silent philosophers sit at a round table with bowls of spaghetti. Forks are placed between each pair of adjacent philosophers.

Each philosopher must alternately think and eat. However, a philosopher can only eat spaghetti when they have both left and right forks. Each fork can be held by only one philosopher and so a philosopher can use the fork only if it is not being used by another philosopher. After an individual philosopher finishes eating, they need to put down both forks so that the forks become available to others. A philosopher can only take the fork on their right or the one on their left as they become available and they cannot start eating before getting both forks.

Eating is not limited by the remaining amounts of spaghetti or stomach space; an infinite supply and an infinite demand are assumed.

The problem is how to design a discipline of behavior (a concurrent algorithm) such that no philosopher will starve; i.e., each can forever continue to alternate between eating and thinking, assuming that no philosopher can know when others may want to eat or think.

Author

Name: Email:
Samuel Lucas de Moura Ferino samuellucas97@ufrn.edu.br

About

Implementation of Concurrency Programming problem, Dining Philosophers.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages