From ba628e3dd929389dcd78c933d330dd5e70ddca85 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Thu, 9 Nov 2023 14:49:36 -0600 Subject: [PATCH] Update README.md fixed to match filenames. --- threads-sema/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/threads-sema/README.md b/threads-sema/README.md index 75e8100..280474b 100644 --- a/threads-sema/README.md +++ b/threads-sema/README.md @@ -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 different forms: -- `dining_philosophers.c`: code with deadlock -- `dining_philosophers_print.c`: code with deadlock, and some useful printing +- `dining_philosophers_deadlock.c`: code with deadlock +- `dining_philosophers_deadlock_print.c`: code with deadlock, and some useful printing - `dining_philosophers_no_deadlock.c`: code without deadlock - `dining_philosophers_no_deadlock_print.c`: code without deadlock, and some useful printing