Question: Consider a system consisting of processes P 1, P 2, ..., P n , each of which has a unique priority number. Write the pseudo-code
Consider a system consisting of processes P1, P2, ..., Pn, each of which has a unique priority number. Write the pseudo-code of a monitor that allocates three identical line printers to these processes, using the priority numbers for deciding the order of allocation. (10 points)
Start with the following and populate the two functions request_printer() and release_printer():
monitor printers {
int num_avail = 3;
int waiting_processes[MAX PROCS];
int num_waiting;
condition c;
void request_printer(int proc_number) {
}
void release_printer() {
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
