├── .gitignore ├── Prj1README.txt ├── Problem 1 └── MyCopy.c ├── Problem 2 └── ForkCopy.c ├── Problem 3 └── PipeCopy.c ├── Problem 4 └── StopWatch.c ├── Problem 5 ├── MyShell.c └── MyShell.h ├── Problem 6 ├── MoreShell.c └── MoreShell.h ├── Problem 7 ├── DupShell.c └── DupShell.h ├── Problem 8 ├── MergesortMulti.c └── MergesortSingle.c ├── Problem 9 └── BurgerBuddies.c ├── README.md ├── log.txt └── makefile /.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | *.o 3 | -------------------------------------------------------------------------------- /Prj1README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Prj1README.txt -------------------------------------------------------------------------------- /Problem 1/MyCopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 1/MyCopy.c -------------------------------------------------------------------------------- /Problem 2/ForkCopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 2/ForkCopy.c -------------------------------------------------------------------------------- /Problem 3/PipeCopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 3/PipeCopy.c -------------------------------------------------------------------------------- /Problem 4/StopWatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 4/StopWatch.c -------------------------------------------------------------------------------- /Problem 5/MyShell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 5/MyShell.c -------------------------------------------------------------------------------- /Problem 5/MyShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 5/MyShell.h -------------------------------------------------------------------------------- /Problem 6/MoreShell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 6/MoreShell.c -------------------------------------------------------------------------------- /Problem 6/MoreShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 6/MoreShell.h -------------------------------------------------------------------------------- /Problem 7/DupShell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 7/DupShell.c -------------------------------------------------------------------------------- /Problem 7/DupShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 7/DupShell.h -------------------------------------------------------------------------------- /Problem 8/MergesortMulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 8/MergesortMulti.c -------------------------------------------------------------------------------- /Problem 8/MergesortSingle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 8/MergesortSingle.c -------------------------------------------------------------------------------- /Problem 9/BurgerBuddies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/Problem 9/BurgerBuddies.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/README.md -------------------------------------------------------------------------------- /log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/log.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crysxd/Operating-System-CS356-Project-1/HEAD/makefile --------------------------------------------------------------------------------