Process Management and Scheduling Overview

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

1/31

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.

32 Terms

1
New cards

Process

An active instance of a program in execution, including its state, data, and interactions. It is not just the code of the program.

2
New cards

Multiprogramming

Running multiple processes by rapidly switching the CPU between them.

3
New cards

Multiprocessing

Using multiple CPUs or CPU cores to run code simultaneously.

4
New cards

Multithreading

Running different parts of the same process concurrently on multiple CPUs.

5
New cards

Multitasking

A general term encompassing multiprogramming, multiprocessing, and multithreading.

6
New cards

Operating System (OS) Tasks

Managing processes, allocating resources, preventing deadlocks, supporting interprocess communication, and allowing users to create new processes.

7
New cards

Process Creation

Triggered by system initialization, execution of a process creation system call, a user request, or the initiation of a batch job. The fork() function creates a child process.

8
New cards

Process Suspension

Occurs when a process waits for I/O, data, or a signal from another process, or when it voluntarily pauses or is forced to pause by the OS.

9
New cards

Process Termination

Caused by normal exit, error exit, fatal errors, operator intervention, parent process request, or timeout.

10
New cards

Running

The process is actively using the CPU.

11
New cards

Ready

The process is runnable but currently stopped to allow another process to run.

12
New cards

Blocked

The process is unable to run until an external event occurs.

13
New cards

New

The process has just been created but is not yet in the 'ready' pool.

14
New cards

Exit

The process has been completed.

15
New cards

Process Control Block (PCB)

A data structure containing process ID, state, control, resource ownership, memory management, and accounting information.

16
New cards

Interrupts

Events that cause a change in the normal flow of a process's execution, often triggered by external devices needing CPU access.

17
New cards

Context Switch

Saving the current process's context (CPU registers) when an interrupt occurs, before executing an interrupt handler and potentially switching to a new process.

18
New cards

Threads

A stream of execution within a process, considered a lightweight process, that can share process memory and resources.

19
New cards

Thread Pooling

A set number of threads are created based on CPU cores, and tasks are assigned to run on available threads.

20
New cards

Inter-Process Communication (IPC)

Techniques for processes to communicate, exchange data, resolve resource conflicts, and manage dependencies.

21
New cards

Process Scheduling

The OS decides which process will run next, which can be achieved via timer interrupts (pre-emptive) or when a process yields (cooperative). Scheduling is required on process exit or when a process blocks on I/O.

22
New cards

First-Come First-Served (FCFS)

Processes are added to a queue in the order they arrive. The process at the head of the queue runs until it blocks. The blocked process then joins the tail of the queue when ready.

23
New cards

FCFS Example

If processes P0, P1, P2, and P3 arrive in that order with processing times of 7ms, 5ms, 9ms, and 6ms, respectively, then they are processed in that order.

24
New cards

Shortest Job First (SJF)

Processes are ordered by their run-time duration. The process with the shortest run time is executed first.

25
New cards

SJF Example

Using the same processes, P1 is processed first (5ms), then P3(6ms), then P0(7ms), then P2 (9ms).

26
New cards

Round Robin (RR)

Each process is allocated a time slice (quantum). After its quantum, the process moves to the end of the queue.

27
New cards

RR Example

Using the same processes, with a quantum of 4ms and a 0 switch time, P0 is processed first for 4ms, then P1, P2 and P3. P0 then continues with its remaining 3ms, P1 needs just 1ms to complete, and so on until completion.

28
New cards

Priority Scheduling

Each process is assigned a priority. The process with the highest priority is executed first.

29
New cards

FCFS Note

FCFS is simple, but can lead to longer waiting and processing times for some processes.

30
New cards

SJF Note

SJF minimizes wait time, but long-running processes may 'starve'. It also requires predicting the future duration of jobs.

31
New cards

RR Note

RR ensures fairness by equally distributing processing time.

32
New cards

Priority Scheduling Note

Useful when priority is required but may cause low priority processes to starve.