docs: ftok clarification & updated gitignore

This commit is contained in:
ae 2024-10-13 23:10:42 +03:00
parent dfc4d63985
commit d85cf11754
Signed by: ae
GPG Key ID: 995EFD5C1B532B3E
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -30,6 +30,7 @@
*.dylib *.dylib
# Executables # Executables
out/
*.exe *.exe
*.out *.out
*.app *.app

View File

@ -26,7 +26,7 @@
**Criteria 3:** **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 - Init should write random numbers from P1-P4 into the shared memory
**Termination:** **Termination:**