OS: Process Management

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

1/30

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.

31 Terms

1
New cards

Program

A set of instructions written in a programming language that can be executed by a computer to perform a specific task.

2
New cards

Process

An instance of a program running in a computer, including its code, data, and system resources.

3
New cards

Thread

It is the smallest unit of execution within a process that allows for concurrent execution of multiple

tasks.

4
New cards

States of a Process: New

The process is created but not yet started the execution.

5
New cards

States of a Process: Ready

The process is prepared to run but is waiting for CPU allocation.

6
New cards

States of a Process: Running

The process is actively being executed by the CPU

7
New cards

States of a Process: Waiting

The process is paused, waiting for an external event to proceed.

8
New cards

States of a Process: Terminated

The process has completed execution and exit the system.

9
New cards

Process Control Block

  • It is a data structure maintained by the operating system that contains all the information required to manage a specific process. It simply defines as “IDENTITY CARD” of the process.

  • This information is used by the operating system to track the execution status of each process.

10
New cards

PCB: Process ID

A unique identifier for the process.

11
New cards

PCB: Process State

The current state of the process

12
New cards

PCB: Process Counter

A pointer to the next instruction to be executed by the process.

13
New cards

PCB: CPU Registers

The values of the CPU registers at the time of the process's context switch.

14
New cards

PCB: Memory Limits

Information about the process’s memory allocation.

15
New cards

PCB: Open Files

A list of file descriptors or handles the process is using.

16
New cards

Process Scheduling

It refers to the mechanism that determines which process gets to use the CPU at any given time.

It aims to optimize resource utilization and minimize waiting times.

17
New cards

Process Scheduler

It is a component within an operating system that determines which process should be running on the CPU at a given time. This particular component decides which available process should be prioritized by the CPU.

18
New cards

Scheduling Queues: Job Queue

The queue contains all the processes in the system that are waiting to be processed.

19
New cards

Scheduling Queues: Ready Queue

The queue keeps a set of all processes residing in main memory, ready and waiting to execute.

20
New cards

Scheduling Queues: Ready Queue

The processes which are blocked due to the unavailability of an I/O device are added to this queue.

21
New cards

Types of Process Schedulers: Long-Term Job Scheduler

It determines which programs are admitted to the system for processing. It selects processes from the queue and loads them into memory for execution.

22
New cards

Types of Process Schedulers: Short-Term Scheduler (CPU Scheduler)

This scheduler selects a process among the processes that are ready to execute and allocates CPU to one of them.

23
New cards

Types of Process Schedulers: Medium-Term Scheduler (Process Swapping Scheduler)

This scheduler is in-charge of handling the swapped out-processes.

24
New cards

Categories of Scheduling: Non-Preemptive

In this type of scheduling, a running process cannot be interrupted until it has completed it’s execution or voluntarily moves to the waiting state.

25
New cards

Categories of Scheduling: Pre-emptive

In this type of scheduling, current processes are allowed to be interrupted and moved back to the ready state so that another process with high-priority can run.

26
New cards

Preemptive Scheduling Algorithms: Round Robin

Each process is assigned a fixed time slice or quantum. When a process uses up its time slice, it is preempted and placed back into the ready queue.

27
New cards

Preemptive Scheduling Algorithms: Shortest Remaining Time First

The process with the shortest remaining execution time is given the CPU next.

28
New cards

Preemptive Scheduling Algorithms: Priority Scheduling

allows processes to be executed based on their priority, and if a higher-priority process arrives while another is running, the lower-priority process can be interrupted and resumed later.

29
New cards

Non-preemptive Scheduling Algorithms: First Come First Serve

Processes are executed in the order they arrive in the ready queue. No preemption occurs, so the first process that arrives gets executed to completion before the next process starts.

30
New cards

Non-preemptive Scheduling Algorithms: Shortest Job First

The process with the shortest burst time (execution time) is selected for execution first.

31
New cards

Non-preemptive Scheduling Algorithms: Priority Scheduling

Each process is assigned a priority, and the process with the highest priority (lowest numerical value) gets executed first.