Can it is possible for a process to request more resources then it's need in Banker Algorithm ? Does such request will considered valid or feasible, if safe sequence exists ?
Banker's Algorithm Issue : Can a process request resources more than it's need?
3.4k Views Asked by lifeisshubh At
1
There are 1 best solutions below
Related Questions in OPERATING-SYSTEM
- the end of the I/O operation is notified to the system by an interrupt.how much system time do the mentioned operations occupy?
- Problem on CPU scheduling algorithms in OS
- OS-wide text autocomplete service with popup
- mkssecreenshotmgr taking a screenshot
- How to prevent app from crashing on android emulator
- Is there a function to end a child process?
- Swapping a healthy and unallocated partition in Windows 10
- ubuntu OS : Why my battery is completely drained of in just 2 hours in suspend mode
- 1 filenames = [] 2 ----> 3 for file in os.zipfile('images.zip'):
- Worth it to access data by blocks on modern OS/hardware?
- How does outlook disable screenshot
- How can I enable my app to access a specific partition directory for reading and writing without showing popup to user?
- Exception of type 'System.Exception' was thrown. Error in Cosmos Project
- Maximum CPU Voltage reading
- Java: get username from uid
Related Questions in DEADLOCK
- Why sem_post() looks like blocked when using WinAPI and Semaphore to create a program that re-running again and again
- Understanding Potential Deadlock in Resource Pool Implementation Described in "Go in Action"
- Workaround for Micrometer deadlock
- How to detect deadlocks in a Go program?
- ORM Postgresql DeadLock?
- Deadlock occured but can't find it's origin
- Lock Acquisition Order in MYSQL
- The Philosophers dinning problem, why my threads are getting race conditions?
- How to ensure consistency in process synchronization
- custom mutex - all goroutines are asleep - deadlock
- How to prevent Deadlocks in Java using the Bakery Algorithm?
- Deadlock in Python garbage collection on exception
- COS/S3 python log handler causes deadlock
- mpi deadlock with matrix-vector multiplication
- Database Deadlock Prevention Wound-wait and wait-die
Related Questions in BANKERS-ALGORITHM
- my request resource function is not working properly its giving unexpected result
- My Banker's Algorithm program with REQUEST is not working
- Does std::ifstream.get capture everything including \n?
- Bankers resource request algorithm implementation in c
- Bankers Algorithm: Unable to print
- Misunderstanding bankers algorithm?
- Banker's algorithm - can I allocate resources to a process if Work is less than Need
- Bankers Algorithm processes
- Why isn't my global allocation structure updating values correctly?
- Bankers Algorithm thread creation not running the passed method completely
- Creating multiple pthreads in a for loop in C
- Banker's Algorithm Issue : Can a process request resources more than it's need?
- Unsafe State and Safe State
- Read from File, Load arrays
- how to call files as resources in Dev c++ bloodshed
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
No, a process cannot be allowed to request more that its declared maximum need.
Reason: The Banker's algorithm uses the max need of each process while determining safety of a request. If a process is allowed to request more than max need resources, then paths that were considered to be safe during some previous allocations might become unsafe. So the safety analysis would collapse.
P.S. This answer is given by Dhananjay Dhamdhere https://www.cse.iitb.ac.in/~dmd/
Thanks sir, for resolving my query.