Recent questions tagged tanenbaum

142
views
0 answers
1 votes
The 32-bit Linux kernel supports a maximum of 32768 processes in the process table, and the kernel is allocated 1,073,741,824 (1 GiB) of the virtual ... allocated to each process at a minimum, with the maximum number of processes running?
607
views
1 answers
0 votes
How many packets will be generated if you apply the simple flooding technique on the network in the above diagram fig-1 to make sure that each of the nodes receives at least one copy of the packet?
763
views
1 answers
2 votes
In certain countries, when two people meet they bow to each other. The protocol is that one of them bows first and stays down until the other one bows. If ... time, they will both stay bowed forever. Write a program that does not deadlock.
841
views
0 answers
0 votes
Write a program that detects if there is a deadlock in the system by using a resource allocation graph. Your program should read from a file the ... , the program should print out the identities of all processes that are deadlocked.
356
views
0 answers
0 votes
Write a program to implement the deadlock detection algorithm with multiple resources of each type. Your program should read from a file the following inputs ... program should print out the identities of all processes that are deadlocked.
447
views
0 answers
0 votes
Program a simulation of the banker’s algorithm. Your program should cycle through each of the bank clients asking for a request and evaluating whether it is safe or unsafe. Output a log of requests and decisions to a file.
354
views
0 answers
0 votes
Repeat the previous problem, but now avoid starvation. When a baboon that wants to cross to the east arrives at the rope and finds baboons crossing to the west ... are allowed to start until at least one baboon has crossed the other way.
605
views
0 answers
0 votes
A student majoring in anthropology and minoring in computer science has embarked on a research project to see if African baboons can be taught about ... series of eastward-moving baboons holding up the westward-moving baboons indefinitely.
713
views
0 answers
0 votes
Cinderella and the Prince are getting divorced. To divide their property, they have agreed on the following algorithm. Every morning, each one may send ... negotiating. Why? Is deadlock possible? Is starvation possible? Discuss your answer.
262
views
0 answers
0 votes
A program contains an error in the order of cooperation and competition mechanisms, resulting in a consumer process locking a mutex (mutual exclusion ... resource deadlock or a communication deadlock? Suggest methods for its control.
249
views
0 answers
0 votes
Local Area Networks utilize a media access method called CSMA/CD, in which stations sharing a bus can sense the medium and detect transmissions as well as ... you suggest a solution to this anomaly?Can starvation occur with this scenario?
218
views
0 answers
0 votes
Assume two processes are issuing a seek command to reposition the mechanism to access the disk and enable a read command. Each process is interrupted before ... or a livelock? What methods would you recommend to handle the anomaly?
519
views
1 answers
0 votes
263
views
0 answers
0 votes
Main memory units are preempted in swapping and virtual memory systems. The processor is preempted in time-sharing environments. Do you think that these ... handle resource deadlock or for other purposes? How high is their overhead?
379
views
0 answers
0 votes
A computer science student assigned to work on deadlocks thinks of the following brilliant way to eliminate deadlocks. When a process requests a resource, it ... were the professor, what grade would you give this proposal and why?
790
views
2 answers
0 votes
One way to prevent deadlocks is to eliminate the hold-and-wait condition. In the text it was proposed that before asking for a new resource, a process ... of the existing ones to competing processes. Propose an improvement to this scheme.
607
views
1 answers
0 votes
In an electronic funds transfer system, there are hundreds of identical processes that work as follows. Each process reads an input line specifying an amount of ... and then release it immediately if the other is locked are not allowed.)
850
views
1 answers
0 votes
A distributed system using mailboxes has two $IPC$ primitives, send and receive. The latter primitive specifies a process to receive from and blocks if ... need to communicate frequently about other matters. Is deadlock possible? Discuss.
614
views
1 answers
0 votes
Two processes, $A$ and $B,$ each need three records, $1, 2,$ and $3,$ in a database. If $A$ ... each process can request them. What fraction of all the combinations is guaranteed to be deadlock free?
374
views
0 answers
2 votes
One way to eliminate circular wait is to have rule saying that a process is entitled only to a single resource at any moment. Give an example to show that this restriction is unacceptable in many cases.
2.3k
views
2 answers
1 votes
A system has four processes and five allocatable resources. The current allocation and maximum needs are as follows:What is the smallest value of x for which this is a safe state?
1.3k
views
1 answers
0 votes
The banker's algorithm is being run in a system with $m$ resource classes and $n$ processes. In the limit of large $m$ and $n,$ the number of operations that must be performed to ... to $m^{a} n^{b}.$ What are the values of $a$ and $b?$
633
views
0 answers
0 votes
Suppose that process $A$ in Fig. 6-12 requests the last tape drive. Does this action lead to a deadlock?
1.8k
views
1 answers
0 votes
Consider the previous problem again, but now with $p$ processes each needing a maximum of $m$ resources and a total of $r$ resources available. What condition must hold to make the system deadlock free?
3.6k
views
1 answers
0 votes
A system has two processes and three identical resources. Each process needs a maximum of two resources. Is deadlock possible? Explain your answer.
954
views
1 answers
0 votes
Take a careful look at Fig. 6-11(b). If $D$ asks for one more unit, does this lead to a safe state or an unsafe one? What if the request came from $C$ instead of $D?$
1.2k
views
1 answers
3 votes
Can a system be in a state that is neither deadlocked nor safe? If so, give an example. If not, prove that all states are either deadlocked or safe.
272
views
0 answers
0 votes
In theory, resource trajectory graphs could be used to avoid deadlocks. By clever scheduling, the operating system could avoid unsafe regions. Is there a practical way of actually doing this?
386
views
0 answers
0 votes
Can the resource trajectory scheme of Fig. 6-8 also be used to illustrate the problem of deadlocks with three processes and three resources? If so, how can this be done? If not, why not?
246
views
0 answers
0 votes
All the trajectories in Fig. 6-8 are horizontal or vertical. Can you envision any circumstances in which diagonal trajectories are also possible?