2.1 Process Management

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

1/131

flashcard set

Earn XP

Description and Tags

2.1 Process Management

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

132 Terms

1
New cards

It involves various tasks like creation, scheduling, termination of processes, and a dead lock.

Process management

2
New cards

It is a program that is under execution

Process

3
New cards

It is the unit of work in a modern computing system.

process

4
New cards

TRUE OR FALSE

The more complex the operating system is, the more it is expected to do on behalf of its users.

TRUE

5
New cards

TRUE OR FALSE

An operating system executes a variety of programs that run as a process.

TRUE

6
New cards

TRUE OR FALSE

Process execution must progress in a sequential fashion. No parallel execution of instructions of a single process.

TRUE

7
New cards

ENUMERATE: An operating system executes a variety of programs:

  • Batch Systems (Jobs)

  • Time-shared systems (user programs or tasks)

8
New cards

The unit of execution within a process.

Threads

9
New cards

TRUE OR FALSE

A process can have one or more threads.

TRUE

10
New cards

TRUE OR FALSE

A process with a single thread executes only one task at a time, while a multithreaded process can execute a task per thread.

TRUE

11
New cards

ENUMERATE: Parts of a Process

  • Text Section

  • Current activity including program counter, processor registers

  • Stack

  • Data Section

  • Heap

12
New cards

The program code of process is callled?

Text Section

13
New cards

In process, it contains temporary data

  • Function parameters, return addresses, local variables

Stack

14
New cards

In process, it contain the global variables

Data section

15
New cards

In process, it contains memory dynamically allocated during run time

Heap

16
New cards

TRUE OR FALSE

  • The program becomes process when an executable file is loaded into memory

TRUE

17
New cards

TRUE OR FALSE

  • One program can be several processes

    • Consider multiple users executing the same program

TRUE

18
New cards

TRUE OR FALSE

As a process executes, it changes state

TRUE

19
New cards

ENUMERATE: Process State

  • New

  • Running

  • Waiting

  • Ready

  • Terminated

20
New cards

The state where the process is being created

New

21
New cards

The state where instructions of process are being executed

Running

22
New cards

The state where the process is waiting for some event to occur

Waiting

23
New cards

The state where the process is waiting to be assigned to a processor

Ready

24
New cards

The state where the process has finished execution

Terminated

25
New cards

Each process is represented in the operating system by a ?

process control block (PCB)

26
New cards

Other term for process control block

Task Control Block

27
New cards

ENUMERATE: Information associated with each process

  • Process Number

  • Process State

  • Program Counter

  • I/O Status Information

  • CPU Registers

  • CPU Scheduling Information

  • Memory-management Information

  • Accounting Information

28
New cards

is the unique number representing a process

Process Number/Process ID

29
New cards

location of instruction to next execute

Program Counter

30
New cards

contents of all process-centric registers

CPU registers

31
New cards

memory allocated to the process

Memory-manage information

32
New cards

CPU used, clock time elapsed since start, time limits

Accounting Information

33
New cards

I/O devices allocated to process, list of open files

I/O Status Information

34
New cards

TRUE OR FALSE

  • The goal -- the objective of multiprogramming is to have some process running at all times to maximize CPU utilization.

TRUE

35
New cards

The goal -- the objective of ______ is to have some process running at all times to maximize CPU utilization.

multiprogramming

36
New cards

The objective of _______ is to switch the CPU among processes so frequently that users can interact with each program while it is running. 

time sharing

37
New cards

This selects among available processes for the next execution on the CPU core

Process scheduler

38
New cards

ENUMERATE: Process Scheduler maintains scheduling queues of processes, what are these?

  • Job queues

  • Ready queue

  • Wait queue

39
New cards

As processes enter the system, they are put into a _____ queue, which consists of all processes in the system

job

40
New cards

set of all processes residing in main memory, ready and waiting to execute

Ready Queue

41
New cards

set of processes waiting for an event (i.e., I/O)

Wait Queue

42
New cards

TRUE OR FALSE

  • Interrupts cause the OS to change a CPU from its current task and to run a kernel routine. Such operations happen frequently on a general-purpose system. 

TRUE

43
New cards

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

44
New cards

Context of a process represented in the ____-

PCB (Process Control Block)

45
New cards

TRUE OR FALSE

  • Context-switch time is pure overhead; the system does no useful work while switching

    • The more complex the OS and the PCB - the longer the context switch

TRUE

46
New cards

A process may create several new processes via ________ during the course of execution.

create- process system call

47
New cards

selects which process should be executed next and allocates CPU

Short-Term Scheduler / CPU Scheduler

48
New cards

TRUE OR FALSE

Short-term scheduler is invoked frequently (milliseconds)  (must be fast)

TRUE

49
New cards

selects which processes should be brought into the ready queue

Long-term scheduler / Job Scheduler

50
New cards

TRUE OR FALSE

Long-term scheduler is invoked infrequently (seconds, minutes)  (may be slow)

51
New cards

ENUMERATE: Process can be describe as either

  • I/O Bound Process

  • CPU-bound process

52
New cards

This process spends more time doing I/O than computations, many short CPU bursts

I/O Bound Process

53
New cards

This process spends more time doing computations; few very long CPU bursts

CPU-bound processes

54
New cards

The creating process is called the _____-, and the new processes are called the _______ of that process. 

parent process

children

55
New cards

TRUE OR FALSE

  • Parent process creates children processes, which, in turn, create other processes, forming a tree of processes structure

TRUE

56
New cards

Generally, the process identified and managed via a _____-

process identifier (PID)

57
New cards

ENUMERATE: In process creation, the resource sharing options are:

  • Parent and children share all resources

  • Children share a subset of parent’s resources

  • Parent and child share no resources

58
New cards

ENUMERATE: In process creation, the execution options are:

  • Parent and children execute concurrently

  • Parent waits until children terminate

59
New cards

ENUMERATE: In process creation, the address spaces are:

  • Child duplicate of the parent (same data and program as the parent)

  • The child has a program loaded into it

60
New cards

In UNIX operating systems, this system call creates a new process

fork()

61
New cards

In UNIX operating systems, this system call used after a fork() to replace the process’ memory space with a new program

exec()

62
New cards

In UNIX operating system, parent process calls ___ waiting for the child to terminate

wait()

63
New cards

The process executes the last statement and then asks the operating system to delete it using the _____ system call.

exit()

64
New cards

In process termination, this system call returns status data from child to parent

wait()

65
New cards

The parent may terminate the execution of children processes using the ____ system call.

abort()

66
New cards

ENUMERATE: The parent may terminate the execution of children processes using the abort() system call. Some reasons for doing so:

  • The child has exceeded allocated resources

  • The task assigned to the child is no longer required

  • The parent is exiting, and the operating systems do not allow a child to continue if its parent terminates

67
New cards

Some operating systems do not allow a child to exists if its parent has terminated. If a process terminates, then all its children must also be terminated. This is called?

Cascading Termination

68
New cards

The parent process may wait for the termination of a child process by using the ___ system call.

wait()

69
New cards
70
New cards

In process termination, if no parent waiting (did not invoke wait()) process is a ____

zombie

71
New cards

In process termination, if parent terminated without invoking wait(), the process is an ___

orphan

72
New cards

ENUMERATE: Android Process Importance Hierarchy (Most to Least)

  • Foreground Process

  • Visible Process

  • Service Process

  • Background Process

  • Empty Process

73
New cards

The current process visible on the screen, representing the application the user is currently interacting with

Foreground Process

74
New cards

A process that is not directly visible on the foreground but that is performing an activity that the foreground process is referring to (that is, a process performing an activity whose status is displayed on the foreground process)

Visible Process

75
New cards

A process that is similar to a background process but is performing an activity that is apparent to the user (such as streaming music)

Service Process

76
New cards

A process that may be performing an activity but is not apparent to the user.

Background Process

77
New cards

A process that holds no active components associated
with any application

Empty Process

78
New cards

TRUE OR FALSE

  • Android will begin terminating processes that are most important.

  • Android will begin terminating processes that are least important.

79
New cards

ENUMERATE: Processes executing concurrently in the operating system may be either ?

  • independent processes

  • cooperating processes.

80
New cards

A process is ______- if it does not share data with any other processes executing in the system.

independent

81
New cards

A process is _____ if it can affect or be affected by the other processes executing in the system.

cooperating

82
New cards

Clearly, any process that shares data with other processes is a ________ process.

cooperating

83
New cards

ENUMERATE: There are several reasons for providing an environment that allows process cooperation:

  • Information sharing. Since several applications may be interested in the same piece of information (for instance, copying and pasting), we must provide an environment to allow concurrent access to such information.

  • Computation speedup. If we want a particular task to run faster, we must break it into subtasks, each of which will be executing in parallel with the others. Notice that such a speedup can be achieved only if the computer has multiple processing cores.

  • Modularity. We may want to construct the system in a modular fashion, dividing the system functions into separate processes or threads

84
New cards

Cooperating processes require an ________ mechanism that will allow them to exchange data— that is, send data to and receive data from each other.

interprocess communication (IPC)

85
New cards

ENUMERATE: There are two fundamental models of interprocess communication:

  • Shared Memory

  • Message Passing

86
New cards

ENUMERATE: Google Chrome Browser is multiprocess with 3 different types of processes:

  • Browser process manages user interface, disk, and network I/O

  • Renderer process renders web pages, deals with HTML, Javascript. A new renderer created for each website opened

    • Runs in sandbox restricting disk and network I/O, minimizing the effect of security exploits

  • Plug-in process for each type of plug-in

87
New cards

In Google Chrome Browser, this process manages user interface, disk, and network I/O

Browser process

88
New cards

In Google Chrome Browser, this process renders web pages, deals with HTML, Javascript. A new renderer created for each website opened

Renderer process

89
New cards

In Google Chrome Browser, this process for each type of plug-in

Plug-in process

90
New cards

An area of memory shared among the processes that wish to communicate

IPC - Shared Memory

91
New cards

TRUE OR FALSE

In shared memory, the communication is under the control of the users' processes, not the operating system. Major issues are to provide a mechanism that will allow the user processes to synchronize their actions when they access shared memory.

TRUE

92
New cards

Communication between processes takes place through calls to _____ primitives.

send() and receive()

93
New cards

ENUMERATE: Message passing may be either?

blocking or nonblocking —also known as synchronous and asynchronous.

94
New cards

The sending process is blocked until the message is received by the receiving process or by the mailbox.

Blocking Send

95
New cards

The sending process sends the message and resumes operation.

Nonblocking Send

96
New cards

The receiver blocks until a message is available.

Blocking Receive

97
New cards

The receiver retrieves either a valid message or a null.

Nonblocking Receive

98
New cards

If both send and receive are blocking, we have a _____

rendezvous

99
New cards

ENUMERATE: Whether the communication is direct or indirect, messages exchanged by communicating processes reside in a temporary queue. Basically, such queues can be implemented in three ways:

  • Zero Capacity

  • Bounded Capacity

  • Unbounded Capacity

100
New cards

The queue has a maximum length of zero; thus, the link cannot have any messages waiting in it. In this case, the sender must block until the recipient receives the message.

Zero Capacity