(NOT ON EXAM) OS CH6 - Process Synchronization

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

1/49

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.

50 Terms

1
New cards
What is process synchronization?
Mechanisms to coordinate processes/threads to ensure orderly and safe access to shared resources, preventing race conditions.
2
New cards
Define critical section.
A code segment where shared resources are accessed, requiring mutual exclusion to prevent concurrent execution.
3
New cards
What is a race condition?
An unpredictable outcome caused by unsynchronized concurrent access to shared data (e.g., two threads modifying a counter).
4
New cards
Define mutual exclusion.
Ensuring only one process/thread executes in its critical section at a time.
5
New cards
What is Peterson's Solution?
A software-based algorithm for mutual exclusion between two processes using turn and flag[2] variables.
6
New cards
How does test_and_set work?
An atomic hardware instruction that sets a boolean to true and returns its previous value. Used for spinlocks.
7
New cards
Define compare_and_swap.
An atomic instruction that updates a value to new_value only if it matches expected, returning the original value.
8
New cards
What is a spinlock?
A mutex lock where threads busy-wait (loop) until the lock becomes available.
9
New cards
Define binary semaphore.
A semaphore with values 0 (locked) or 1 (unlocked), used for mutual exclusion.
10
New cards
What is a monitor?
A high-level synchronization construct that encapsulates shared data and procedures, ensuring only one thread executes within it at a time.
11
New cards
Define condition variable.
A mechanism in monitors allowing threads to wait (wait()) or signal (signal()) changes in state (e.g., resource availability).
12
New cards
What is priority inversion?
A lower-priority process blocks a higher-priority process by holding a shared resource. Solved via priority inheritance.
13
New cards
Describe the bounded-buffer problem.
Producers and consumers share a fixed-size buffer; synchronization ensures producers don't overflow and consumers don't underflow.
14
New cards
What is the readers-writers problem?
Managing concurrent access where multiple readers can read shared data simultaneously, but writers require exclusive access.
15
New cards
Define the Dining Philosophers Problem.
Philosophers sharing chopsticks (resources) may deadlock if all pick up one chopstick simultaneously.
16
New cards
What is deadlock?
Two or more processes wait indefinitely for each other to release resources (e.g., circular dependency).
17
New cards
Define starvation.
A process is indefinitely denied access to a resource due to unfair scheduling.
18
New cards
What is an atomic operation?
An operation that executes completely without interruption (e.g., test_and_set).
19
New cards
What is an adaptive mutex?
A lock in Solaris that spins if the holder is running on another CPU or blocks if the holder is inactive.
20
New cards
Define dispatcher objects.
Windows synchronization tools (e.g., mutexes, semaphores) that block threads in non-signaled state.
21
New cards
How are semaphores used in the bounded-buffer problem?
- mutex (1): Ensures mutual exclusion.
- full (0): Counts filled slots.
- empty (n): Counts empty slots.
22
New cards
Explain the semaphore use in readers-writers.
- rw_mutex (1): Protects writers.
- mutex (1): Protects read_count.
- read_count: Tracks active readers; first reader locks rw_mutex, last unlocks it.
23
New cards
How to prevent deadlock in Dining Philosophers?
1. Allow ≤4 philosophers at the table.
2. Use asymmetric picking (odd: left→right; even: right→left).
3. Acquire both chopsticks atomically.
24
New cards
How do monitors differ from semaphores?
Monitors encapsulate synchronization logic within an ADT, while semaphores require manual wait()/signal() calls.
25
New cards
How does priority inheritance resolve priority inversion?
The lower-priority process temporarily inherits the priority of the blocked higher-priority process.
26
New cards
Write pseudocode for a mutex lock using test_and_set.
do {
while (test_and_set(&lock)) ;
// Critical section
lock = false;
} while (true);
27
New cards
How is a semaphore implemented with blocking?
Use a waiting queue. wait() decrements value; if negative, block. signal() increments; if ≤0, wake a thread.
28
New cards
How does Linux handle synchronization in kernel 2.6+?
Uses preemptive kernel with spinlocks, semaphores, and atomic integers. Replaces spinlocks with preemption control on single-CPU.
29
New cards
What is the role of pthread_cond_wait()?
Blocks a thread until a condition is signaled, releasing the associated mutex atomically.
30
New cards
How does transactional memory work?
Groups memory operations into atomic transactions; if conflicts occur, the transaction aborts and retries.
31
New cards
Write an OpenMP directive to protect a critical section.
#pragma omp critical
{
// Critical section code
}
32
New cards
Why do functional languages reduce race conditions?
Variables are immutable; no shared state to modify concurrently (e.g., Erlang uses message passing).
33
New cards
What are turnstiles in Solaris?
Queues for threads waiting on locks. Implements priority inheritance to resolve inversion.
34
New cards
When does Windows use spinlocks?
On multiprocessor systems for short critical sections; avoids context-switching overhead.
35
New cards
What is atomic_t in Linux?
A data type for atomic operations (e.g., increment/decrement) without locking.
36
New cards
How can writers starve in readers-writers?
If readers continuously arrive, writers may never get access. Solutions include writer priority.
37
New cards
Compare monitor signaling strategies.
- Signal-and-Wait: Signaler waits until signaled thread exits.
- Signal-and-Continue: Signaler proceeds immediately.
38
New cards
List the three requirements for solving the critical-section problem.
Mutual exclusion, progress, bounded waiting.
39
New cards
How to initialize semaphores for the bounded-buffer problem?
- mutex = 1 (mutual exclusion).
- full = 0 (initial filled slots).
- empty = N (buffer size).
40
New cards
Are mutexes and binary semaphores interchangeable?
No. Mutexes include ownership (only the locking thread can unlock), while semaphores lack this.
41
New cards
Provide a semaphore deadlock example.
Process 1: wait(A); wait(B);
Process 2: wait(B); wait(A);
42
New cards
How is mutual exclusion enforced in monitors?
Only one thread can execute inside the monitor at a time; others queue at the entry.
43
New cards
What happens during x.wait() in a monitor?
The thread releases the monitor lock, blocks, and re-acquires the lock upon waking.
44
New cards
How does the ResourceAllocator monitor work?
Uses busy flag and x.wait(time) to prioritize resource requests based on time.
45
New cards
How is priority scheduling implemented in monitors?
Using x.wait(c) with priority number c; the lowest c (highest priority) resumes first.
46
New cards
How does Linux handle preemption in critical sections?
Disables kernel preemption during critical sections to prevent race conditions.
47
New cards
How does Java implement monitors?
Using synchronized methods/blocks, which enforce mutual exclusion and use wait()/notify().
48
New cards
What does a semaphore's negative value mean?
The magnitude indicates the number of blocked threads in the waiting queue.
49
New cards
How does the bounded-waiting solution using test_and_set work?
Uses waiting[i] flags and cyclic scanning to ensure no thread waits indefinitely.
50
New cards
How does OpenMP handle parallel execution?
Splits loop iterations across threads using #pragma omp parallel for, managed by the runtime.