docs: typos

This commit is contained in:
ae 2024-10-13 21:03:31 +03:00
parent b225bbbad9
commit dfc4d63985
Signed by: ae
GPG Key ID: 995EFD5C1B532B3E

View File

@ -15,14 +15,14 @@
**Criteria 1:**
- Init is a parent process, which forks child processes P1-P4 (`fork` syscall)
- P1-P4: Process should generate a random integer number between 0-19 (random number generation or simply hardcoded)
- P1-P4 should send the random number to init through message passing (`pipe` syscall)
- P1-P4: Process should generate a random integer between 0-19 (random number generation or simply hardcoded)
- P1-P4 should send the random integer to init through message passing (`pipe` syscall)
- Init should read data sent by P1-P4
**Criteria 2:**
- Scheduler is an independent process: it should create a shared memory segmnet (`shmget` and related syscalls)
- Scheduler should read dadta (a list of random numbers) written by init, sort the list in ascending order, and print the list (sorting algorithm of choice)
- Scheduler is an independent process: it should create a shared memory segment (`shmget` and related syscalls)
- Scheduler should read data (a list of random numbers) written by init, sort the list in ascending order, and print the list (sorting algorithm of choice)
**Criteria 3:**