Process Management :

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

1/23

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.

24 Terms

1
New cards

What is process management?

Process management is a mechanism in operating system (OS) which involves handling the execution of process

Key Concept:

  • Process

  • Process State

  • PCB

2
New cards

What is process ?

The program in execution is known as process

Or the program in main memory is known as process

  • Active entity

<p>The program in execution is known as process</p><p>Or the program in main memory is known as process</p><ul><li><p>Active entity </p><p></p></li></ul><p></p>
3
New cards

What is program ?

The program in secondary memory is known as program

  • Passive entity

4
New cards

How many process CPU execute at a time ?

1

5
New cards

What are the data structure used in process management ?

  • Stack

  • Heap

  • Data

  • Text

6
New cards

What does stack store ?

Temporary Data

7
New cards

Whar does Heap Store ?

Dynamically allocated data

8
New cards

What does data store ?

Global and Static Variable

9
New cards

What does text store ?

Left thing in the code

10
New cards

What are PCB or Task Block ?

  • PCB is generated by OS for every process for execution

  • All the things in PCB is related to processes, which helps for execution

  • Process Specific

  • It terminated as soon as the process terminated/executed.

11
New cards

PCB consits of ?

  • Process ID

  • Process State

  • CPU registers

  • Memory I/O

  • Program Counter

  • I/O

  • Accounting

12
New cards

What is process State ?

The state of process can be :

new

ready

running

waiting

terminated

13
New cards

What is new in process state ?

The process is being created

14
New cards

What is ready in process state ?

The process went from sec memory to main memory

15
New cards

What is running in process state ?

The program being executed there

16
New cards

What is waiting in process state ?

The waiting (or blocked) state in a process state occurs when a process is paused because it is waiting for a specific event to happen, such as:

  • Input/output (I/O) operations to complete.

  • A resource (like a file or memory) to become available.

  • A signal from another process.

17
New cards

What is the terminated state ?

The process has being executed

18
New cards

What are schedulers ?

They are the special components which help transfer process from main memory to secondary memory (vice-versa)

  • Allocate the process to processor

19
New cards

What are the types of schedulers ?

  • Long term schedular

  • Short term schedular

  • Medium term schedular

20
New cards

What is long term schedular ?

Work : It loads the program from secondary memory to main memory

  • State Transition: The process moves from the newly state (in secondary memory) to the ready state (in main memory).

  • The process is now ready to be picked by the short-term scheduler for CPU execution.

<p>Work : It loads the program from secondary memory to main memory</p><ul><li><p><strong>State Transition:</strong> The process moves from the <strong>newly state</strong> (in secondary memory) to the <strong>ready state</strong> (in main memory).</p></li><li><p>The process is now ready to be picked by the <strong>short-term scheduler</strong> for CPU execution.</p></li></ul><p></p>
21
New cards

What is short term schedular ?

The work of short term schedular is to allocate CPU to one of the process from the main memory

a processor can only have one process at a time

Decide which process get the CPU

22
New cards

What is the Short term schedualr ?

CPU scheduler or dispatcher

23
New cards

What is medium term schedular ?

The medium-term scheduler is part of the operating system that temporarily moves processes from main memory (RAM) to secondary storage (disc) to free up space. It brings them back to memory later, when resources are available or the process is ready to run again

  • Swapping done by medium-term scheduler

24
New cards

What is the other name of Medium term schedular ?

Swapping / swapper