aboutsummaryrefslogtreecommitdiff

Banker's Algorithm

This is a Java implementation of the Banker's Algorithm, an algorithm used to determine if an operating system is in a "safe state" with no deadlocks possible. The algorithm is used to prevent deadlocks by ensuring that the system will always have a safe sequence of processes to execute. It does this by checking if the system's current state is safe or not by using the concept of resource allocation graph and the safety algorithm.

Features

  • Detection of safe state
  • Prevention of deadlocks

Dependencies

  • Java Development Kit (JDK)
  • IDE (Integrated Development Environment) or a text editor

Usage

Compile the program javac Main.java

Then run it java Main

  1. The program will prompt you to enter the number of processes and the number of resources.
  2. Then it will prompt you to enter the maximum resources each process can have and the resources already allocated to each process.
  3. The program will then use the Banker's Algorithm to check if the system is in a safe state or not and display the safe sequence of processes if the system is in a safe state.

Note

  • The program uses the Banker's Algorithm to prevent deadlocks and check for safe states, this algorithm is widely used in operating systems.
  • The program is a simulation of the algorithm, the user needs to enter the inputs manually, it can be modified to read inputs from a file or a database.
  • The program uses the concept of resource allocation graph and the safety algorithm, it might be helpful to understand these concepts before using the program.

Here is an example of a resource allocation graph in ASCII:

A B C D
R1 [3] [2] [2] [1]
R2 [2] [1] [1] [2]
R3 [1] [3] [3] [3]

In this example, the graph represents a system with 4 processes (A, B, C, and D) and 3 resources (R1, R2, and R3). Each cell in the graph represents the number of units of a resource that a process is currently holding. In this case, process A is holding 3 units of resource R1, 2 units of resource R2, and 1 unit of resource R3. Similarly, process B is holding 2 units of resource R1, 1 unit of resource R2, and 3 units of resource R3. The resource allocation graph is used to check the system's state and check if the system is in a safe state or not by using the Banker's Algorithm.

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.