Update README.md

fixed to match filenames.
This commit is contained in:
Remzi Arpaci-Dusseau
2023-11-09 14:49:36 -06:00
committed by GitHub
parent 0cd7a8be1a
commit ba628e3dd9

View File

@@ -51,8 +51,8 @@ Code in `rwlock.c`. Build via `make`, run via `rwlock`.
The dining philosophers example from the text is found herein, in a few The dining philosophers example from the text is found herein, in a few
different forms: different forms:
- `dining_philosophers.c`: code with deadlock - `dining_philosophers_deadlock.c`: code with deadlock
- `dining_philosophers_print.c`: code with deadlock, and some useful printing - `dining_philosophers_deadlock_print.c`: code with deadlock, and some useful printing
- `dining_philosophers_no_deadlock.c`: code without deadlock - `dining_philosophers_no_deadlock.c`: code without deadlock
- `dining_philosophers_no_deadlock_print.c`: code without deadlock, and some useful printing - `dining_philosophers_no_deadlock_print.c`: code without deadlock, and some useful printing