GitHub topics: philosophers-dinner-problem
Kuninoto/42_Philosophers
Philosophers dinner problem in C. Introduction to parallel programming.
Language: C - Size: 346 KB - Last synced at: about 12 hours ago - Pushed at: 2 months ago - Stars: 14 - Forks: 0

alx-sch/philosophers
A multithreaded simulation of the Dining Philosophers problem featuring mutexes.
Language: C - Size: 2.23 MB - Last synced at: 12 days ago - Pushed at: 12 days ago - Stars: 0 - Forks: 0

duarteagostinho/philosophers
The purpose of this project is to get introduced to threading and processes, and how to work on shared memory space. Learn about threads, mutex, semaphores and shared memory.
Language: C - Size: 72.3 KB - Last synced at: 18 days ago - Pushed at: 18 days ago - Stars: 0 - Forks: 0

qwww-12/philosophers
A 42 school project that simulates the Dining Philosophers problem using multithreading (philo) and multiprocessing with semaphores (philo_bonus). The goal is to handle concurrency, synchronization, and avoid deadlocks and starvation.
Language: C - Size: 696 KB - Last synced at: 23 days ago - Pushed at: 23 days ago - Stars: 0 - Forks: 0

Jules478/philosophers_Tester
Shell script designed to test the basic functionality of the 42 project 'philosophers'. It tests: time stamps, eat count, error handling, crashes, infinite loops. More details in README.
Language: Shell - Size: 21.5 KB - Last synced at: 25 days ago - Pushed at: 25 days ago - Stars: 0 - Forks: 0

42-Course/philosophers_visualizer
Dinning philosophers visualizer
Language: JavaScript - Size: 18.6 KB - Last synced at: 25 days ago - Pushed at: 25 days ago - Stars: 0 - Forks: 0

gxsilva/42SP_Philosophers
A project that addresses the synchronization of multi threads and multi processes and addresses the paradigm of the philosophers' dinners
Language: C - Size: 355 KB - Last synced at: 27 days ago - Pushed at: 27 days ago - Stars: 0 - Forks: 0

AnaVolkmann/42_PHILO
A solution to the dining philosopher problem. Introduction to parallel programming
Language: C - Size: 47.9 KB - Last synced at: about 1 month ago - Pushed at: about 2 months ago - Stars: 0 - Forks: 0

rom98759/Philosophers-visualizer
Very simple web visualizer for Philosophers (42 school project)
Language: JavaScript - Size: 59.6 KB - Last synced at: 2 months ago - Pushed at: 2 months ago - Stars: 3 - Forks: 1

DeRuina/philosophers
Philosophers is a comprehensive guide and solution to the classic Dining Philosophers Problem in computer science. This project uses the C programming language and multithreading to implement a solution that prevents deadlocks and resource conflicts.
Language: C - Size: 1.41 MB - Last synced at: about 2 months ago - Pushed at: almost 2 years ago - Stars: 41 - Forks: 1

carolina-tcn/philosophers
C program that simulates the dining philosophers problem using threads and mutexes.
Language: C - Size: 55.7 KB - Last synced at: 2 months ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

iaceene/Deadlock
Deadlock is a common issue in concurrent programming that can occur when multiple threads or processes are blocked indefinitely while waiting for resources held by each other. This can severely impact the performance and reliability of a program or system.
Language: C - Size: 2.93 KB - Last synced at: 3 months ago - Pushed at: 3 months ago - Stars: 0 - Forks: 0

clementvidon/philosophers
[documented code / -pedantic -std=c89] - 42School variant of the dining philosophers problem to learn the basics of threading a process, how to create threads and use mutexes.
Language: C - Size: 315 KB - Last synced at: 2 months ago - Pushed at: over 2 years ago - Stars: 14 - Forks: 1

RogerioLS/Philosophers-42sp
Philosophers is a project from the 42 school curriculum that explores concurrent programming with threads and mutexes, processes and semaphores. It is a variation on the famous dining philosophers problem.
Language: C - Size: 283 KB - Last synced at: about 2 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

leogaudin/philosophers
42 • In this project, you will learn the basics of threading a process. You will see how to create threads and you will discover mutexes.
Language: C - Size: 105 KB - Last synced at: 3 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

FreddyMSchubert/42_Philosophers
💭 Dijkstra's Philosophers Problem ❓ - I never thought philosophy would be so deadly. ☠️ [42 PROJECT]
Language: C - Size: 10.3 MB - Last synced at: about 7 hours ago - Pushed at: about 1 year ago - Stars: 3 - Forks: 0

pvtrov/theory-of-concurrency
Solutions for Theory Of Concurrency class at AGH University of Krakow
Language: Java - Size: 1.22 MB - Last synced at: 5 months ago - Pushed at: 5 months ago - Stars: 0 - Forks: 0

Florian-A/Philosophers
Autant de fourchettes dans un si petit tonneau ?
Language: C - Size: 150 KB - Last synced at: 3 months ago - Pushed at: 5 months ago - Stars: 0 - Forks: 0

mehmoodulhaq570/Philosophers-Dining-Hall-Problem
Solution to Operating System Dining Philosophers problem using threading and synchronization. It ensures smooth resource sharing among philosophers, preventing conflicts like deadlock.
Language: Python - Size: 2.62 MB - Last synced at: about 2 months ago - Pushed at: over 1 year ago - Stars: 7 - Forks: 2

mcombeau/philosophers 📦
Philosophers is a project from the 42 school curriculum that explores concurrent programming with threads and mutexes, processes and semaphores. It is a variation on the famous dining philosophers problem.
Language: C - Size: 2.18 MB - Last synced at: 6 months ago - Pushed at: 6 months ago - Stars: 14 - Forks: 0

achrafelkhnissi/Philosophers
This project is about learning threads and processes, mutexes and semaphores.
Language: C - Size: 31.3 KB - Last synced at: 2 months ago - Pushed at: almost 3 years ago - Stars: 3 - Forks: 0

biralavor/42_philosophers
WIP - a classic multithread program to learn how to avoid data race and deadlock issues
Language: C - Size: 312 KB - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

MateusjsSilva/philosophers-dinner
A C program simulating the "Dining Philosophers" problem using threads and mutexes to manage resource sharing and prevent deadlock. Each philosopher is a thread, and mutexes represent chopsticks, ensuring safe concurrent access.
Language: C - Size: 5.86 KB - Last synced at: 2 months ago - Pushed at: 9 months ago - Stars: 0 - Forks: 0

AndreiRech/FPPDSemaforos
Repositório referente ao Trabalho 2 da disciplina de Fundamentos de Processamento Paralelo e Distribuído na PUCRS
Language: Go - Size: 4.88 KB - Last synced at: 3 months ago - Pushed at: 8 months ago - Stars: 1 - Forks: 0

AgvanGrigoryan/Philosophers
In this project, you will learn the basics of threading a process. You will see how to create threads and you will discover mutexes.
Language: C - Size: 106 KB - Last synced at: 3 months ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

shexweeknd/42-cursus-Philosophers
This is a project for the 42 cursus that focuses on the dining philosophers problem. The goal of this project is to implement a solution to the problem using multithreading and synchronization techniques while writing a C program
Language: C - Size: 1.03 MB - Last synced at: 2 months ago - Pushed at: 8 months ago - Stars: 1 - Forks: 0

malatini42/Philosophers 📦
Philosophers (42cursus) 2020-20201. This project is an introduction to threads (POSIX) and mutexs. It's the famous Philosopher's dining table problem.
Language: C - Size: 5.18 MB - Last synced at: 2 days ago - Pushed at: 9 months ago - Stars: 0 - Forks: 0

cypri1-dev/42_philosophers
The 42 Philosophers project is a programming exercise to learn about concurrency and synchronization. Inspired by Dijkstra's philosopher problem, it simulates philosophers alternating between eating, thinking, and sleeping while avoiding deadlocks and starvation. It helps develop skills in managing threads, mutexes, and semaphores.
Language: C - Size: 96.7 KB - Last synced at: 3 months ago - Pushed at: 9 months ago - Stars: 2 - Forks: 0

meteulken/Philosophers
Philosophers Problem Solution in C
Language: C - Size: 1.59 MB - Last synced at: 2 months ago - Pushed at: 9 months ago - Stars: 0 - Forks: 0

tesla33io/42_philosophers_visualizer
Zeno (of Citium) visualizes the progress of the philosophers' simulation.
Language: Python - Size: 118 KB - Last synced at: 9 months ago - Pushed at: 9 months ago - Stars: 1 - Forks: 0

atormac/philosophers
Language: C - Size: 33.2 KB - Last synced at: 10 months ago - Pushed at: 10 months ago - Stars: 0 - Forks: 0

AchrafMez/philo
Solving the dining philosophers problem.
Language: C - Size: 61.5 KB - Last synced at: 10 months ago - Pushed at: 10 months ago - Stars: 1 - Forks: 0

HaruSnak/Philosophers
Project 42 | Solving the dining philosophers problem by implementing concurrency and deadlock management. | Level 2 - Common Core
Language: C - Size: 603 KB - Last synced at: 10 months ago - Pushed at: 10 months ago - Stars: 0 - Forks: 0

gemartin99/Philosophers
Dining Philosophers Problem
Language: C - Size: 12.7 KB - Last synced at: about 2 months ago - Pushed at: over 2 years ago - Stars: 2 - Forks: 0

PedroZappa/42_philosophers
42 Project : philosophers
Language: C - Size: 278 KB - Last synced at: 3 days ago - Pushed at: 12 months ago - Stars: 0 - Forks: 0

gokberkkeptig/Threads-in-C-Programming
Language: C - Size: 53.7 KB - Last synced at: about 1 year ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

shehanish/42_philo
Philosopher is a 42 school project that simulates the dining philosophers problem. It enhances your understanding of concurrency and synchronization in C by managing threads and resource sharing among multiple philosophers
Language: C - Size: 14.6 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

gustinoco/so-thread
Project solved dinning philopher problem using windows.h threads
Language: C++ - Size: 13.7 KB - Last synced at: about 1 year ago - Pushed at: over 7 years ago - Stars: 0 - Forks: 0

luweglarz/PHILOSOPHER_42
Philosophers dinner problem using threads
Language: C - Size: 51.8 KB - Last synced at: about 1 year ago - Pushed at: over 3 years ago - Stars: 1 - Forks: 0

lavrd/philosophers
Dining philosophers problem
Language: Go - Size: 9.77 KB - Last synced at: about 1 year ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

whoismtrx/42_Philosophers
In the 42 philosophers project, the goal is to develop a synchronization mechanism that enables a group of philosophers to share limited resources while avoiding issues like deadlock.
Language: C - Size: 171 KB - Last synced at: about 2 months ago - Pushed at: about 1 year ago - Stars: 1 - Forks: 0

okbrandon/philosophers
🍽️ dining philosophers problem in C.
Language: C - Size: 67.4 KB - Last synced at: about 14 hours ago - Pushed at: about 1 year ago - Stars: 2 - Forks: 0

KuzmichevaKsenia/itmo-multithreading-programming-labs
ИТМО - 4 курс - Многопоточное программирование
Language: C++ - Size: 492 KB - Last synced at: about 1 year ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

Ekkoz897/42cursus_Philosophers
The goal of this project was to learn to avoid deadlock and race conditions when creating multithreaded applications.
Language: C - Size: 22.5 KB - Last synced at: 3 months ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

cristianovagos/philo-dinner
Philosophers Dinner Problem built in C language, using Threads/Monitors
Language: C - Size: 19.5 KB - Last synced at: about 1 year ago - Pushed at: about 8 years ago - Stars: 0 - Forks: 0

marcosviudes/Philosopher
A small simulation of the famous problem of the dining philosophers
Language: C - Size: 28.3 KB - Last synced at: over 1 year ago - Pushed at: about 3 years ago - Stars: 1 - Forks: 0

Gab-182/philo
Apply the basics of threading a process. Creating threads and discover mutexes.
Language: C - Size: 1.27 MB - Last synced at: 3 months ago - Pushed at: over 2 years ago - Stars: 3 - Forks: 0

joaodibba/42_philosophers
Introduction to the basics of process threading, and how work on the same memory space. And learn about mutexes, semaphores, and shared memory.
Language: C - Size: 1.53 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

romann-broque/Philosophers
This project provides a concurrent programming solution to the classic problem, illustrating resource management and deadlock prevention. It serves as a practical example of problem-solving in a multithreaded environment.
Language: C - Size: 153 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

OmarZOS/star-crafter
A bunch of useful scripts at some points in my academic walkthrough..
Language: Java - Size: 703 KB - Last synced at: over 1 year ago - Pushed at: over 3 years ago - Stars: 2 - Forks: 0

Sulig/Philosophers
Nunca pensé que la filosofía llegara a ser tan letal --------------------------> En este proyecto, aprenderás los principios básico de hilar un proceso. Vas a aprender a como crear hilos y descubrirás los mutex.
Language: C - Size: 1.57 MB - Last synced at: about 2 months ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

jaugustyn02/concurrency-theory
Concurrency Theory course - labs and small projects
Language: Java - Size: 1.59 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

maiadegraaf/philo
This project introduces the concepts of multi-threading and mutexes.
Language: C - Size: 25.4 KB - Last synced at: about 21 hours ago - Pushed at: over 2 years ago - Stars: 2 - Forks: 0

saifeddineelhanoune/Dinning_philosophers
synchronized program solving dinning philosophers problem in threads
Language: C - Size: 43 KB - Last synced at: 4 days ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

biilalc/42Cursus
Ecole 42 Cursus Projects
Language: C - Size: 3.67 MB - Last synced at: over 1 year ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

MariamElSahhar/philosophers
🍜 A solution in C to the classic philosophers problem, requiring multi-threading and synchronization mechanisms for resource management.
Language: C - Size: 147 KB - Last synced at: 2 months ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

yavuzsonmez/42-Philosophers
Solving the "Dining philosophers problem", by threading a process and using mutex and semaphores. This project is about ressources sharing, synchronization and parallel computing.
Language: C - Size: 83 KB - Last synced at: 3 months ago - Pushed at: over 3 years ago - Stars: 1 - Forks: 0

faruktinaz/philosophers
In this project, I tackled the Philosopher's Problem. By coding the solution to this problem, I aimed to grasp the functioning and usage logic of threads in the C language, as well as learn how to effectively utilize mutexes.
Language: C - Size: 10.7 KB - Last synced at: 2 months ago - Pushed at: over 1 year ago - Stars: 2 - Forks: 0

Justhiro55/Philosophers
basics of threading a process. create threads and mutexes.
Language: C - Size: 22.5 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

RealConrad/42philosophers
I never thought philosophy would be so deadly
Language: C - Size: 173 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

kroharu/philosophers
Visualising dining philosophers problem using threads and processes, 42 curriculum
Language: C - Size: 1.57 MB - Last synced at: over 1 year ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

wasied/philosophers
A simulation project dealing with threads, mutexes and synchronization - from the famous dining philosopher's problem.
Language: C - Size: 46.9 KB - Last synced at: 5 months ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

hde-oliv/philosophers
A project to solve the 42 version of the classic Dining Philosophers Problem.
Language: C - Size: 389 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

mucahitcakmak/42-philosophers
Language: C - Size: 33.2 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

maricard18/42-philosophers
Philosophers dining problem using threads
Language: C - Size: 1.38 MB - Last synced at: 3 months ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

ydemura/Philosophers
Simulate the classic Dinig Philosophers problem.
Language: C - Size: 1.25 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

noureddine-taleb/ft_philosophers
implementation of the philosopher problem using threads
Language: C - Size: 63.5 KB - Last synced at: over 1 year ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

Taanviir/Philosophers
42 Cursus - Philosophers - Dining Philosophers Problem
Language: C - Size: 59.6 KB - Last synced at: over 1 year ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

LuisAraujo/Jantar-dos-Filosofos
Este jogo foi desenvolvido na disciplina de Sistemas Operacionais no IFBA Campus Santo Amaro, ministrada pelo Prof Joacir Ferreira. O jogo baseia-se no Problema dos filósofos criado por Dijkstra sobre recorrência.
Size: 3.76 MB - Last synced at: almost 2 years ago - Pushed at: over 8 years ago - Stars: 0 - Forks: 0

merituulie/philisophers
A classic Dining philosophers problem solved with a multithreaded program. The program takes in the amount of philosophers, which is also the amount of forks available in the dining table. The program feeds the philosophers in turns with the limited resources (forks) when given reasonable input.
Language: C - Size: 62.5 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

nikita-sakharin/philosophers
Philosophers
Language: C - Size: 7.81 KB - Last synced at: almost 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

berat-samli/Philosophers
Language: C - Size: 45.9 KB - Last synced at: about 1 month ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

jiup/philosophers
Chandy and Misra's solution for the drinking philosophers problem
Language: C++ - Size: 44.9 KB - Last synced at: almost 2 years ago - Pushed at: over 6 years ago - Stars: 0 - Forks: 0

ycqexXm/philosophers
basics of threading a process. create threads and mutexes
Language: C - Size: 7.81 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

richardmarcela/42-philosophers
This is a 42 project. Philosophers dinner problem in C.
Language: C - Size: 21.5 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

Mushigarou/Philosophers
The dining philosopher's problem was solved using mutexes in the C Language.
Language: C - Size: 45.9 KB - Last synced at: about 2 months ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

librity/ft_philosophers
42 São Paulo - Philosophers
Language: C - Size: 313 KB - Last synced at: 4 days ago - Pushed at: over 2 years ago - Stars: 4 - Forks: 0

SaidM96/philosophers
The dining philosopher's problem. Solved using mutexes
Language: C - Size: 6.84 KB - Last synced at: 3 months ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

mdesmartin/philosopher
A concurrent programming project exploring the dining philosophers problem solution.
Language: C - Size: 271 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

RhesusP/Philosophers
I never thought philosophy would be so deadly
Language: C - Size: 2.21 MB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 1 - Forks: 0

TooFatToKidnapp/philosophers
Dining Philosopher Problem Implementation in C with Threads, Mutex Locks, Child Processes, and Semaphores
Language: C - Size: 39.1 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

Reallynotanalien/philo
[42 Cursus] Project that aims to understand multithreading
Language: C - Size: 78.1 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 1 - Forks: 0

kichkiro/philosophers_tester
Tester for the Philosophers project of school 42.
Language: Python - Size: 1.28 MB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 5 - Forks: 0

ygor-sena/42cursus-philosophers
The ninth project of 42's curriculum asks students to solve the famous Dijkstra's synchronization problem. This is a introduction to threads, mutexes and semaphores.
Language: C - Size: 97.7 KB - Last synced at: 10 days ago - Pushed at: almost 2 years ago - Stars: 1 - Forks: 0

mayachee/Philosophers
Language: C - Size: 102 KB - Last synced at: 5 months ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

mavmi/philosophers
Solution of the dining philosophers problem
Language: C - Size: 6.84 KB - Last synced at: 3 months ago - Pushed at: about 3 years ago - Stars: 1 - Forks: 0

TommyJD93/Philosophers
Dining philosophers problem's guide for 42 school
Language: C - Size: 194 KB - Last synced at: about 2 years ago - Pushed at: about 2 years ago - Stars: 29 - Forks: 2

Olegt0rr/Foolosophy
Solving Dining philosophers problem
Language: Python - Size: 34.2 KB - Last synced at: 10 days ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 2

romanwrites/philosophers
🍝 Dining philosophers problem
Language: C - Size: 801 KB - Last synced at: about 2 years ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

annafenzl/42-philosophers
The basics of threading a process and using mutexes/semaphores.
Language: C - Size: 604 KB - Last synced at: about 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

arkanto99/Dining-Philosophers
C implementation of the dining philosophers problem using semaphores, mutexes and message passing.
Language: C - Size: 1.4 MB - Last synced at: 10 days ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

MusabAlsaifi/C-The-Dining-Philosophers
Implementation of the dining philosophers program in C
Language: C - Size: 2.93 KB - Last synced at: about 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

jhparkkkk/Philosophers
42 Cursus | Solving the Dining philosophers problem using threads and mutexes
Language: C - Size: 1.1 MB - Last synced at: almost 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

RinatMambetov/philosophers-42school
In this project, you will learn the basics of threading a process. You will see how to create threads and you will discover mutexes
Language: C - Size: 1.24 MB - Last synced at: 3 months ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 0

pprattis/Philosopher-dinner-problem-with-Posix-threads-and-mutex
A program written with compatibility with Posix and uses Posix Threads that runs the philosohper dinner problem using threads and mutex to prevent multiple simultaneous execution of the critical section.
Language: C - Size: 44.9 KB - Last synced at: 2 months ago - Pushed at: over 5 years ago - Stars: 1 - Forks: 0

aoumad/Philosophers
Philosophers an individual project at 42 about introduction to the basics of process threading, and how work on the same memory space. And learn about mutexes, semaphores, and shared memory.
Language: C - Size: 2.61 MB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 8 - Forks: 0

anasilvr/philosophers
The basics of threading a process.
Language: C - Size: 1.24 MB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

rlinsdev/42-philosophers
Philosophers: I never thought philosophy would be so deadly
Language: C - Size: 289 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

magalhaesm/42cursus-philosophers
Language: C - Size: 44.9 KB - Last synced at: about 2 months ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

augustobecker/Philosophers
The Dining Philosophers problem, in C - @42sp Project
Language: C - Size: 68.4 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0
