Question: JUST NEED HELP ON NUMBER 2!!!!!!!!!!!!!!!, PLEASE SHOW PSEUDOCODE FOR THE ANSWER :) Question 1. [Points 4] Race conditions are possible in many computer systems.
JUST NEED HELP ON NUMBER 2!!!!!!!!!!!!!!!, PLEASE SHOW PSEUDOCODE FOR THE ANSWER :)

Question 1. [Points 4] Race conditions are possible in many computer systems. Consider an accounting system of an organization where multiple users have access to an account to which they can either deposit or withdraw from: deposit(amount) and withdraw(amount). These two functions are passed the amount that is to be deposited or withdrawn from the account balance. Assume that Mary and Joe are employees who have access to this account. Currently, the balance in the account is $3000. If Mary executes deposit(500) and simultaneously Joe executes withdraw(300) from the account, describe how a race condition is possible and what might be done to prevent the race condition from occurring. Show the possible balances with race condition and when race condition is prevented. Question 2 [Points 4] Let us try to solve the above race condition in the banking application using semaphores with wait() and signal() operations. Assume that the three variables that are to be protected through the semaphores are: balance, withdrawals, and deposits. Assume that all these variables are initialized to 0 . The three functions of interest are: deposit_money, withdraw_money, find_balance. For simplicity, assume that there is only one account that we need to deal with. Write pseudocode using semaphore ACCT to implement the three functions. (Code can be at the same level of detail as in the book examples.)
Step by Step Solution
There are 3 Steps involved in it
To solve the race condition using semaphores follow this pseudocode to implement the functions depos... View full answer
Get step-by-step solutions from verified subject matter experts
