From d85cf117541cc4d33dac30f88327c0117fa36fdc Mon Sep 17 00:00:00 2001 From: ae Date: Sun, 13 Oct 2024 23:10:42 +0300 Subject: [PATCH] docs: ftok clarification & updated gitignore --- .gitignore | 1 + docs/PROJECT.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index cd531cf..6d99d7b 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,7 @@ *.dylib # Executables +out/ *.exe *.out *.app diff --git a/docs/PROJECT.md b/docs/PROJECT.md index b2ebd59..27d68a0 100644 --- a/docs/PROJECT.md +++ b/docs/PROJECT.md @@ -26,7 +26,7 @@ **Criteria 3:** -- Init should attach to the shared memory created by the scheduler process (`shmat` and related syscalls, hardcoded to any unique key of choice -> `ftok` syscall is a clean way to accomplish this) +- Init should attach to the shared memory created by the scheduler process (`shmat` and related syscalls, any unique key of choice -> `ftok` syscall is a clean way to accomplish this) - Init should write random numbers from P1-P4 into the shared memory **Termination:**