Concurrency: Mutual Exclusion and Synchronization Techniques

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

1/515

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

516 Terms

1
New cards

Mutual Exclusion

The ability to exclude all other processes from a course of action while one process is granted that ability.

2
New cards

Dekker's Algorithm

A software approach to achieve mutual exclusion.

3
New cards

Peterson's Algorithm

A software approach to achieve mutual exclusion.

4
New cards

Race Condition

A situation where two or more processes access shared data and they try to change it at the same time.

5
New cards

Operating System Concerns

Issues related to the management of processes and threads in an operating system.

6
New cards

Process Interaction

The way processes communicate and synchronize with each other.

7
New cards

Requirements for Mutual Exclusion

Conditions that must be met to ensure that mutual exclusion is achieved.

8
New cards

Interrupt Disabling

A hardware support mechanism that prevents interrupts to enforce mutual exclusion.

9
New cards

Special Machine Instructions

Hardware instructions designed to support mutual exclusion.

10
New cards

Semaphores

A synchronization mechanism that can be used to control access to a common resource in concurrent programming.

11
New cards

Producer/Consumer Problem

A classic concurrency problem that illustrates the use of semaphores.

12
New cards

Monitors

A synchronization construct that allows safe access to shared resources.

13
New cards

Monitor with Signal

A type of monitor that uses signals to manage process synchronization.

14
New cards

Alternate Model of Monitors with Notify and Broadcast

A model of monitors that includes notify and broadcast mechanisms for process synchronization.

15
New cards

Message Passing

A method of communication between processes that can be used for synchronization.

16
New cards

Queueing Discipline

The order in which messages are processed in a message-passing system.

17
New cards

Readers/Writers Problem

A classic synchronization problem that involves managing access to a shared resource by multiple readers and writers.

18
New cards

Readers Have Priority

A solution to the readers/writers problem where readers are given preference over writers.

19
New cards

Writers Have Priority

A solution to the readers/writers problem where writers are given preference over readers.

20
New cards

Multiprogramming

The management of multiple processes within a uniprocessor system.

21
New cards

Multiprocessing

The management of multiple processes within a multiprocessor system.

22
New cards

Distributed Processing

The management of multiple processes executing on multiple, distributed computer systems.

23
New cards

Concurrency

The ability of the operating system to manage multiple processes and threads simultaneously.

24
New cards

Busy Waiting

A technique used in software solutions to achieve mutual exclusion where a process repeatedly checks for a condition.

25
New cards

Atomic operation

A function or action implemented as a sequence of one or more instructions that appears to be indivisible; that is, no other process can see an intermediate state or interrupt the operation. The sequence of instruction is guaranteed to execute as a group, or not execute at all, having no visible effect on system state. Atomicity guarantees isolation from concurrent processes.

26
New cards

Critical section

A section of code within a process that requires access to shared resources, and that must not be executed while another process is in a corresponding section of code.

27
New cards

Deadlock

A situation in which two or more processes are unable to proceed because each is waiting for one of the others to do something.

28
New cards

Livelock

A situation in which two or more processes continuously change their states in response to changes in the other process(es) without doing any useful work.

29
New cards

Mutual exclusion

The requirement that when one process is in a critical section that accesses shared resources, no other process may be in a critical section that accesses any of those shared resources.

30
New cards

Race condition

A situation in which multiple threads or processes read and write a shared data item, and the final result depends on the relative timing of their execution.

31
New cards

Starvation

A situation in which a runnable process is overlooked indefinitely by the scheduler; although it is able to proceed, it is never chosen.

32
New cards

Dekker's Algorithm

An algorithm for mutual exclusion for two processes, designed by the Dutch mathematician Dekker.

33
New cards

Busy waiting

A procedure where a process repeatedly reads the value of a variable until it is allowed to enter its critical section, consuming processor time while waiting.

34
New cards

turn

A shared global variable that indicates which process can enter its critical section.

35
New cards

mutual exclusion property

A property that ensures that only one process can access its critical section at a time.

36
New cards

coroutine

A programming construct that allows multiple routines to cooperate by passing control back and forth.

37
New cards

first attempt

An initial solution where processes strictly alternate their use of the critical section, leading to potential blocking.

38
New cards

second attempt

An improvement where each process has its own flag to indicate its status, allowing for better handling of failures.

39
New cards

flag

A Boolean vector used to indicate whether a process is in its critical section, with flag[0] for P0 and flag[1] for P1.

40
New cards

critical section

A part of the program where shared resources are accessed and modified.

41
New cards

Boolean vector

An array that holds Boolean values, used to track the state of each process regarding access to the critical section.

42
New cards

P0

The first process in the mutual exclusion algorithm.

43
New cards

P1

The second process in the mutual exclusion algorithm.

44
New cards

flag[0]

The flag corresponding to process P0, indicating whether it is in its critical section.

45
New cards

flag[1]

The flag corresponding to process P1, indicating whether it is in its critical section.

46
New cards

failure outside critical section

When a process fails while not in its critical section, allowing the other process to continue execution.

47
New cards

failure inside critical section

When a process fails while in its critical section, causing the other process to be permanently blocked.

48
New cards

execution pace

The rate at which a process executes its critical section, which can be dictated by the slower process.

49
New cards

first process execution rate

If P0 uses its critical section only once per hour.

50
New cards

second process execution rate

If P1 would like to use its critical section at a rate of 1,000 times per hour.

51
New cards

blocking

A situation where one process cannot proceed because it is waiting for another process to release a resource.

52
New cards

checking process

The process that periodically checks the other process's flag to determine if it can enter its critical section.

53
New cards

setting flag to true

The action taken by a process to indicate it is about to enter its critical section.

54
New cards

setting flag to false

The action taken by a process to indicate it has exited its critical section.

55
New cards

algorithm

A step-by-step procedure for solving a problem, in this case, managing access to critical sections.

56
New cards

permanent blocking

A condition where one process is indefinitely unable to proceed due to the failure of another process.

57
New cards

Mutual Exclusion

A condition where two or more processes cannot access a critical section simultaneously.

58
New cards

Flag

A boolean variable used to indicate the intention of a process to enter its critical section.

59
New cards

Deadlock

A situation where two or more processes cannot proceed because each is waiting for the other to release resources.

60
New cards

Livelock

A condition where processes continuously change states in response to each other without making progress.

61
New cards

Dekker's Algorithm

A solution for mutual exclusion that uses flags and a turn variable to manage access to critical sections.

62
New cards

Execution Speed

The rate at which a process executes instructions, which can affect mutual exclusion.

63
New cards

Flag Setting

The action of a process setting its flag to true to indicate its desire to enter the critical section.

64
New cards

Process Blocking

A state where a process cannot proceed because it is waiting for another process to release a resource.

65
New cards

State Observation

The ability to check the status of other processes to make decisions about entering critical sections.

66
New cards

Turn Variable

A variable that indicates which process has the right to enter its critical section.

67
New cards

Interchange of Statements

A method used to modify the order of operations in a program to resolve issues like deadlock.

68
New cards

Flag Resetting

The action of a process resetting its flag to defer to another process's desire to enter the critical section.

69
New cards

Process P0

The first process in the mutual exclusion scenario being analyzed.

70
New cards

Process P1

The second process in the mutual exclusion scenario being analyzed.

71
New cards

While Statement

A control structure used to repeatedly check a condition, often used in mutual exclusion algorithms.

72
New cards

Flag[0]

The flag variable associated with process P0.

73
New cards

Flag[1]

The flag variable associated with process P1.

74
New cards

Execution Sequence

The order in which processes execute their instructions, which can affect mutual exclusion.

75
New cards

Mutual Courtesy

A situation where processes defer to each other, potentially leading to livelock.

76
New cards

Proposed Solution

An approach to resolving issues in mutual exclusion algorithms, which may not always be effective.

77
New cards

Process State Change

An alteration in the status of a process that can affect mutual exclusion.

78
New cards

Indefinite Extension

A scenario where processes can continue to execute without making progress due to mutual exclusion issues.

79
New cards

Incorrect Program Behavior

A situation where the program does not function as intended due to flaws in mutual exclusion implementation.

80
New cards

Dekker's Algorithm

A solution for mutual exclusion where processes set flags and check turns to enter critical sections.

81
New cards

flag

A boolean array indicating whether a process is interested in entering its critical section.

82
New cards

turn

An integer variable that indicates whose turn it is to enter the critical section.

83
New cards

P0

A process that attempts to enter its critical section by setting its flag and checking the other process's flag.

84
New cards

P1

Another process that also attempts to enter its critical section using a similar mechanism as P0.

85
New cards

critical section

A section of code that must be executed by only one process at a time to prevent data inconsistency.

86
New cards

parbegin

A construct that initiates concurrent execution of multiple procedures.

87
New cards

mutual exclusion

A property that ensures that only one process can access a critical section at a time.

88
New cards

Peterson's Algorithm

A simpler solution for mutual exclusion that uses flags and a turn variable to manage access to critical sections.

89
New cards

mutual blocking

A situation where two processes are blocked from entering their critical sections due to each other's flags.

90
New cards

while loop

A control flow statement that allows code to be executed repeatedly based on a condition.

91
New cards

boolean

A data type that can hold one of two values: true or false.

92
New cards

int

A data type used to represent integer values.

93
New cards

P0's flag setting

P0 sets flag[0] to true to indicate its interest in entering the critical section.

94
New cards

P1's flag setting

P1 sets flag[1] to true to indicate its interest in entering the critical section.

95
New cards

turn = 1

Indicates that it is P1's turn to enter the critical section.

96
New cards

turn = 0

Indicates that it is P0's turn to enter the critical section.

97
New cards

flag[0] = false

Indicates that P0 is no longer interested in entering its critical section.

98
New cards

flag[1] = false

Indicates that P1 is no longer interested in entering its critical section.

99
New cards

while (turn == 1)

A condition that causes P0 to wait if it is not its turn.

100
New cards

while (turn == 0)

A condition that causes P1 to wait if it is not its turn.