week 8 processes Flashcards

1
Q

An operating system executes a variety of programs which are: 2 examples

A

batch system - jobs
Time-shared systems - user programs or tasks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is a process

A

a program in execution; process execution must
progress in sequential fashion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

should processes execute in a concurrent or a sequential fashion

A

sequential.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what does a process include (3 things)

A

program (text) and program counter (PC)
stack
data section

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

name the states of a process:

A

new: The process is being created
running: Instructions are being executed
waiting: The process is waiting for some event to occur
ready: The process is waiting to be assigned to a processor
terminated: The process has finished execution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is the new state in a process

A

The process is being created
running: Instructions are being executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is the running state in a process

A

Instructions are being executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is the ready state in a process

A

The process is waiting to be assigned to a processor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is the waiting state in a process

A

The process is waiting for some event to occur

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is the terminated state in a process

A

The process has finished execution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is a process control block (PCB)

A

Information associated with each process, which is stored as
various fields within a kernel data structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is stored in a pcb

A

Process state
Program counter
CPU registers
CPU scheduling information
Memory-management information
Accounting information
I/O status information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

describe the process creation

A

Parent process create children processes, which, in turn create
other processes, forming a tree of processes
Generally, process identified and managed via a process
identifier (pid)
Resource sharing
Parent and children share all resources
Children share subset of parent’s resources
Parent and child share no resources
Execution
Parent and children execute concurrently
Parent waits until children terminate
12 / 38

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is a process identified and managed in?

A

Generally, process identified and managed via a process
identifier (pid)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

describe resource sharing in a process creation

A

Parent and children share all resources
Children share subset of parent’s resources
Parent and child share no resources

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

describe execution in process creation

A

Parent and children execute concurrently
Parent waits until children terminate

17
Q

describe unix process creation example

A

fork system call creates new process
exec system call used after a fork to replace the process’
memory space with a new program

18
Q

describe process termination

A

Process executes last statement and asks the operating
system to delete it (exit)
Output data from child to parent (via wait)
Process’ resources are deallocated by operating system
Parent may terminate execution of children processes (abort)
Child has exceeded allocated resources
Task assigned to child is no longer required
If parent is exiting:
Some operating systems do not allow child to continue if its
parent terminates — all children terminated (i.e. cascading
termination)

19
Q

describe exit in process termination

A

Process executes last statement and asks the operating
system to delete it (exit)

20
Q

what happens during the wait stage in process termination

A

Output data from child to parent (via wait)
Process’ resources are deallocated by operating system

21
Q

describe the abort stage in process termination

A

Parent may terminate execution of children processes (abort)
Child has exceeded allocated resources
Task assigned to child is no longer required
If parent is exiting:
Some operating systems do not allow child to continue if its
parent terminates — all children terminated (i.e. cascading
termination)

22
Q

what happens if parents are exiting in process termination

A

Some operating systems do not allow child to continue if its
parent terminates — all children terminated (i.e. cascading
termination)

23
Q

what is a context switch

A

When CPU switches to another process, the system must save
the state of the old process and load the saved state for the
new process via a context switch
Context of a process represented in the PCB
Context-switch time is overhead; the system does no useful
work while switching
Time dependent on hardware support

24
Q

where is the context of a process stored

A

in the PCB

25
Q

context switch time type (i did not know how to word this)

26
Q

context switch time is overhead , what does that mean?

A

Context-switch time is overhead; the system does no useful
work while switching
Time dependent on hardware support