Module-3 Process Synchronization

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

1/14

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.

15 Terms

1
New cards

Cooperating Process

A process that can affect or be affected by other processes executing in the system.

2
New cards

Critical Section Problem

The problem of ensuring that, when one process is executing in its critical section, no other process can be executing in their critical sections.

3
New cards

Mutual Exclusion

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

4
New cards

Progress

If no process is executing in its critical section and there are some processes waiting to enter their critical section, those processes cannot be postponed indefinitely.

5
New cards

Bounded Waiting

There exists a limit on the number of times that other processes can enter their critical sections after a request has been made.

6
New cards

Data Inconsistency

A state where concurrent access to shared data results in unexpected values due to overlapping process executions.

7
New cards

Peterson's Solution

A classic algorithmic solution to the critical-section problem, primarily for two processes using flags and a turn variable.

8
New cards

Semaphore

An integer variable used to control access to a common resource in concurrent programming, accessed through wait() and signal() operations.

9
New cards

Binary Semaphore

A type of semaphore that can only take the values 0 or 1, effectively serving as a mutex lock.

10
New cards

Counting Semaphore

A semaphore that can take a range of non-negative values, used to control access to a finite number of instances of a resource.

11
New cards

Deadlock

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

12
New cards

Starvation

A condition where a process is perpetually denied the resources it needs for execution.

13
New cards

Bounded-Buffer Problem

A synchronization issue involving a finite buffer for exchanging messages between producer and consumer processes.

14
New cards

Readers-Writers Problem

A synchronization problem where processes accessing a shared database must manage ensuring readers can read simultaneously while writers require exclusive access.

15
New cards

Dining-Philosophers Problem

A classic synchronization problem illustrating challenges in resource sharing and avoiding deadlock among processes in concurrent execution.