CH5 - Process Synchronization

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

Processes can execute ___________

Concurrency

2
New cards

The Producer Code

while (true) {
while (counter == BUFFER_SIZE) ;
/* Do nothing */
buffer[in] = next_produced;
in = (in+1) % BUFFER_SIZE;
counter ++;
}
3
New cards

The Consumer Code

while (true) {
while (counter == 0) ;
/* do nothing */
next_consumed = buffer[out];
out = (out+1) % BUFFER_SIZE;
counter --;
}
4
New cards

Race Condition

several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place

5
New cards

Critical Section

section of code where shared data is accessed

6
New cards

In critical section process may change ________________, _____________, _____________.

  • common variables

  • updating table

  • writing file

7
New cards

Entry Section

Code that request permission to enter its critical section

8
New cards

Exit Section

code that is run after exiting critical section

9
New cards

Mutual Exclusion

process Pi is executing in its critical section, then no other processes can be executing in their critical sections

10
New cards

Progress

Processes waiting to enter the critical section cannot be postponed indefinitely

11
New cards

Bounded Waiting

bound on how many times other processes can enter the critical sections after the request and before that request is granted

12
New cards

Preemptive Kernel

allows preemption of process when running in kernel mode

13
New cards

Non-preemptive Kernel

runs until exits kernel mode, blocks, or voluntarily yields CPU

14
New cards

Peterson’s Solution only we there are _________ processes

two

15
New cards

Peterson’s Solution Code

do {
flag[i] = true;
turn = j;
while (flag[j] && trun == j) ;
/* Critical section*/
flag[i] = false;
/* Reminder section */
} while (true);
16
New cards

Mutex Lock

software tool to solve critical section problem

17
New cards

Semaphore

software construct that can be used to enforce mutual exclusion

18
New cards

Deadlock

two or more processes are waiting indefinitely for an event that can be caused by only one of the waiting processes

19
New cards

Starvation

A process may never be removed from the semaphore queue in which it is suspended

20
New cards

Priority Inversion

Scheduling problem when lower-priority process holds a lock needed by higher-priority process

21
New cards

Priority Inversion solved via ____________

Priority-inheritance protocol