├── Labs ├── README.md ├── lab1 │ ├── Parent-Child-Sync.png │ ├── README.md │ ├── shell.png │ └── sysmonitor.png ├── lab2 │ ├── MatMul.png │ ├── README.md │ ├── per_element.png │ ├── per_matrix.png │ ├── per_row.png │ ├── test1 │ │ ├── a.txt │ │ └── b.txt │ ├── test2 │ │ ├── a.txt │ │ └── b.txt │ └── test3 │ │ ├── a.txt │ │ └── b.txt ├── lab3 │ ├── README.md │ ├── caltrain.jpg │ └── lab3_starter_code │ │ ├── Makefile │ │ ├── caltrain-runner.c │ │ ├── caltrain.c │ │ ├── caltrain.h │ │ └── repeat.sh └── lab4 │ ├── README.md │ ├── docker-compose.yml │ ├── redlock_simulation.py │ └── requirements.txt ├── README.md ├── Tutorials └── README.md └── assets └── cover.png /Labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/README.md -------------------------------------------------------------------------------- /Labs/lab1/Parent-Child-Sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab1/Parent-Child-Sync.png -------------------------------------------------------------------------------- /Labs/lab1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab1/README.md -------------------------------------------------------------------------------- /Labs/lab1/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab1/shell.png -------------------------------------------------------------------------------- /Labs/lab1/sysmonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab1/sysmonitor.png -------------------------------------------------------------------------------- /Labs/lab2/MatMul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/MatMul.png -------------------------------------------------------------------------------- /Labs/lab2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/README.md -------------------------------------------------------------------------------- /Labs/lab2/per_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/per_element.png -------------------------------------------------------------------------------- /Labs/lab2/per_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/per_matrix.png -------------------------------------------------------------------------------- /Labs/lab2/per_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/per_row.png -------------------------------------------------------------------------------- /Labs/lab2/test1/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/test1/a.txt -------------------------------------------------------------------------------- /Labs/lab2/test1/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/test1/b.txt -------------------------------------------------------------------------------- /Labs/lab2/test2/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/test2/a.txt -------------------------------------------------------------------------------- /Labs/lab2/test2/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/test2/b.txt -------------------------------------------------------------------------------- /Labs/lab2/test3/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/test3/a.txt -------------------------------------------------------------------------------- /Labs/lab2/test3/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab2/test3/b.txt -------------------------------------------------------------------------------- /Labs/lab3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab3/README.md -------------------------------------------------------------------------------- /Labs/lab3/caltrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab3/caltrain.jpg -------------------------------------------------------------------------------- /Labs/lab3/lab3_starter_code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab3/lab3_starter_code/Makefile -------------------------------------------------------------------------------- /Labs/lab3/lab3_starter_code/caltrain-runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab3/lab3_starter_code/caltrain-runner.c -------------------------------------------------------------------------------- /Labs/lab3/lab3_starter_code/caltrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab3/lab3_starter_code/caltrain.c -------------------------------------------------------------------------------- /Labs/lab3/lab3_starter_code/caltrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab3/lab3_starter_code/caltrain.h -------------------------------------------------------------------------------- /Labs/lab3/lab3_starter_code/repeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab3/lab3_starter_code/repeat.sh -------------------------------------------------------------------------------- /Labs/lab4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab4/README.md -------------------------------------------------------------------------------- /Labs/lab4/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab4/docker-compose.yml -------------------------------------------------------------------------------- /Labs/lab4/redlock_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/Labs/lab4/redlock_simulation.py -------------------------------------------------------------------------------- /Labs/lab4/requirements.txt: -------------------------------------------------------------------------------- 1 | redis==5.2.1 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/README.md -------------------------------------------------------------------------------- /Tutorials/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SajedHassan/CSEx61-Operating-Systems/HEAD/assets/cover.png --------------------------------------------------------------------------------