Author: Dylan Strnad
Programmming languaged used: C++
Bankers algorithm for deadlock avoidance
Takes an input file including data for each process, such as how many resources are allocated to each process, the max resources each process uses, and how many resources are avilable.
Uses the data from info.txt to determine if the system is in a safe state. If so, program outputs the safe sequence, and states that system is safe. Otherwise, the program outputs that the system is not safe.
To compile code in linux environment, run these commands:
$ g++ main.cpp -o output
$ ./output
