Recent questions tagged process-synchronization

0 votes
1 answer
275
Consider the following statements:i) if(count==0)ii) add %eax,%ebx1. i is atomic, ii is non-atomic2. i is non-atomic, ii is non-atomic3. i is non-atomic, ii is atomic4...
4 votes
1 answer
278
How to differentiate between deadlock and progress in synchronisation?
1 votes
1 answer
279
3 votes
1 answer
280
7 votes
1 answer
283
0 votes
3 answers
284
is bounded waiting satisfy or not?what if turn =other?
3 votes
1 answer
288
0 votes
0 answers
289
A process executes following segment of code:for(i = 1; i <= n; n++)fork();The number of new process created is 1. n2. ((n(n+1))/2)3. (2^n)-14. (3^n)-1
2 votes
2 answers
290
1. Progress Satisfied = Deadlock free2. Starvation free = Deadlock free3.Starvation freedom = Bounded waitPlease explain these implications if valid or invalid
3 votes
1 answer
294
1 votes
2 answers
295
6 votes
4 answers
300
A critical regionis a piece of code which only one process executes at a timeis a region prone to deadlockis a piece of code which only a finite number of processes execu...