operating systems exam 2

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

1/124

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.

125 Terms

1
New cards

Which style of monitor directly transfers the control from the thread invoking signal() to the waken thread?

Hoare style

2
New cards

do we have a deadlock if all four deadlock conditions are met?

no

3
New cards

If wait(&lock) is invoked after signal(&lock) is invoked, the wait call will...

wait

4
New cards

when starting a program and switching from kernel level to user level, what happens after creating a process and initializing the address space?

load the program into memory

5
New cards

when starting a program and switching from kernel level to user level, what happens after initializing the translation table?

set the HW pointer to the translation table

6
New cards

when starting a program and switching from kernel level to user level, what happens after loading the program into the memory?

initialize the translation table

7
New cards

when starting a program and switching from kernel level to user level, what happens after setting the CPU to user mode?

jump to the entry point of the program

8
New cards

when starting a program and switching from kernel level to user level, what happens after setting the HW pointer to the translation table?

set the CPU to user mode

9
New cards

practice page tables

10
New cards

practice address translation

11
New cards

What is caching?

storing copies of data at places that can be accessed more quickly

12
New cards

what is temporal locality

recently referenced locations are more likely to be referenced again soon

13
New cards

what is spatial locality?

referenced locations tend to be clustered

14
New cards

what is cache pollution

leaving behind cache content with no localities

15
New cards

what are compulsory misses

data brought into the cache for the first time

16
New cards

what are capacity misses

caused by the limited size of a cache

17
New cards

what is write through caching policy

immediately propagates update through various levels of caching

- used for critical data

18
New cards

what is write back caching policy

delays the propagation until the cached item is replaced

- less expensive

19
New cards

study effective access time

20
New cards

what is demand paging

allowing pages that are referenced actively to be loaded into memory

- provides the illusion of infinite physical memory

21
New cards

what is a page fault

a referenced page is not in memory

22
New cards

What is Belady's Anomaly?

adding more memory results in more page faults

23
New cards

What is thrashing?

when the memory is overcommitted

ex: a process needs 30 pages but a machine only has 20

24
New cards

what is a working set

pages that are referenced within the past T seconds

25
New cards

understand reference streams

26
New cards

what is a device controller

converting between serial bit stream and a block of bytes

27
New cards

What is a device driver?

a OS component that hides the complexity of an I/O device

28
New cards

what is memory mapped I/O

a way to address a device: making no distinction between device addresses and memory addresses

29
New cards

what is polling

A way to access a device: A CPU repeatedly checks the status of a device

30
New cards

what is interrupt driven I/Os

A way to access a device: a device controller notifies the corresponding driver when the device is available

31
New cards

what is direct memory access

a way to access a device using an additional controller to perform data movements

32
New cards

what is a character device?

delivers or accepts a stream of characters, and individual characters are not addressable

33
New cards

a keyboard is an example of..

character device

34
New cards

what is a block device

stores information in a fixed size blocks, each one with its own address

35
New cards

A disk is an example of ...

block device

36
New cards

understand FIFO/ SSTF/ SCAN/ CSCAN

37
New cards

parallel parking is similar to which type of fragmentation/ allocation?

external fragmentation/ contiguous allocation

38
New cards

what is a monitor

a lock + condition variables

39
New cards

what is a lock

provides mutual exclusion to shared data using lock::acquire and lock::release()

40
New cards

what is a condition variable

provides queue for waiting threads inside a critical section. they make it possible to sleep inside of a critical section using the wait() signal() and broadcast() operations. THESE OPERATIONS CAN ONLY BE USED INSIDE LOCKED REGIONS

41
New cards

what is the difference between a semaphore and a monitor?

semaphores are used for both mutual exclusion and scheduling, monitors aim to separate these two concerns. wait() will always wait, p() may not. signal() with an empty queue does nothing, v() increments semaphore.

42
New cards

What are 2 differences between a Hoare and Mesa Monitor?

with Hoare (used in textbooks), the Signal() operation transfers the CPU directly to a waiting thread. with Mesa (used in real OS's) Signal() only puts a waiting thread on the schedulers ready queue

43
New cards

what is a downfall of Mesa monitor?

by the time the waken thread gets to the CPU, the waiting condition may no longer be true and needs to be retested

44
New cards

what is the difference between a reader and a writer

readers never modify the database, writers read and modify the database

45
New cards

What is the readers-writers problem?

we want one writer at a time, but many readers at the same time

46
New cards

what is the basic solution to the reader writer problem

reader:

1.waits until there are no writers

2.accesses database

3.wakes up waiting writers

writer:

1.waits until there is no active reader or writer

2.accesses database

3.wakes up waiting readers or writers

47
New cards

can we implement monitors with semaphores?

no, condition variables only work inside of a lock. using semaphores inside a lock may cause deadlock

48
New cards

what is a deadlock

occurs when threads are waiting for resources with circular dependencies

49
New cards

what are nonpreemptive resources

resources that cannot be taken away from its current thread without failing the computation

50
New cards

what is a preemptive resource

resources that can be resolved by reallocation of resources (ex: CPU)

51
New cards

what is starvation

thread waits indefinitely

52
New cards

true or false: a deadlock implies starvation

true

53
New cards

What are the 4 deadlock conditions?

1. limited access (lock protected resources)

2. no preemption (if someone has the resource it cannot be taken away)

3. wait while holding (holding a resource while requesting and waiting for the next resource)

4. circular chain of requests

54
New cards

which is true about deadlocks:

1. they can happen with any kind of resource

2. they cannot be resolved for each resource independently

3. round robin cannot prevent deadlocks

4. can occur whenever there is waiting

all are true

55
New cards

what is the dining lawyers example

each dining lawyer needs two chopsticks, if each grabs the chopstick on their right before the left at the same time, we have a deadlock

56
New cards

what are some deadlock prevention techniques

1. infinite resources (very large disk)

2. no sharing (independent threads)

3. allocate all resources at the beginning (grab both chopsticks at once)

4. make every one use the same ordering when accessing a resource

5. no waiting

6. preempt resources (copying memory content onto a disk)

7. Bankers algorithm

8. combination of techniques

(remove one of the four deadlock conditions )

57
New cards

What is the banker's algorithm?

a thread states its maximum resource needs in advance

- sum of requested resources > total resources

-OS allocates resource dynamically as needed

58
New cards

what are deadlock detection and recovery steps

1. scan the resource allocation graph

2. detect circular chains of requests

3. recover from the deadlock

59
New cards

describe the resource allocation graph

thread A is waiting for resource X that is owned by thread B. thread B is waiting for resource Y that is owned by thread A

60
New cards

once a deadlock cycle is detected, what can we do?

1. kill a thread and force it to give up its resources

2. rollback actions of a deadlocked thread (need checkpointing)

61
New cards

what is checkpointing

taking snapshots of system states from time to time.

62
New cards

what is a system call

a user process asks the OS to do something on the processes behalf

63
New cards

what is interprocess communication

how processes communicate among address spaces

64
New cards

What is uniprogramming without memory protection?

each application runs within a hardwired range of physical memory addresses

- one application runs at a time

- applications typically use the lower memory addresses and OS uses the higher ones

65
New cards

What is multiprogramming without memory protection

when a program is copied into memory, a linker loader alters the code of the program

66
New cards

what is multiprogrammed OS with memory protection

memory protection keeps user programs from crashing one another and the OS

67
New cards

what are 2 hardware supported mechanisms

1. address translation

2. dual mode operation

68
New cards

how do we switch from kernel to user mode

1. create a process and initialize the address space

2. load the program into memory

3. initialize translation tables

4. set the HW pointer to the translation table

5. sets the CPU to user mode

6. jumps to the entry point of the program

69
New cards

how do we switch from user mode to kernel mode

system calls, hardware interrupts, segmentation faults

1. set cpu to kernel mode

2. save current program counter

3. jump to the handler in the kernel

70
New cards

what is the difference between context switching between threads and processes

to switch among processes we need to save and restore pointers to translation tables. much slower.

71
New cards

what are software supported mechanisms

protection - compilers generate code that is provably safe

72
New cards

what is base and bound translation

each process is loaded into a contiguous region of physical memory addresses

- processes are protected from one another

- OS can move a process around

- negative effect: external fragmentation

73
New cards

what is external fragmentation

memory wasted because the available memory is not contiguous for allocation

74
New cards

what is a segment

a logically contiguous memory region

75
New cards

what is segmentation based translation

use of a table and base-and-bound pairs

76
New cards

what is paging based translation

memory allocation via fixed sized chunks of memory, or pages

- uses a bitmap to track the allocation status of memory pages

-negative impact: internal fragmentation

77
New cards

what is internal fragmentation

allocated pages are not fully used

78
New cards

what is segmented paging translation

breaks the page table into segments

79
New cards

what are paged page tables

two level tree of page tables

- can be accelerated with TLB's

80
New cards

true or false: caching works well with programs with little localities

false- does not work well

81
New cards

what are translation lookaside buffers

tracks and stores recently translated memory addresses for short term reuses

82
New cards

what is a TLB lookup

sequential search of the TLB table

83
New cards

what is a virtually addressed cache

TLB between the CPU and the translation tables

84
New cards

what is a physically addressed cache?

TLB between the translation tables and the main memory

85
New cards

what is the formula for effective access time

=P(hit) (hit cost) + P(miss) (miss cost)

86
New cards

what is a cache hit

When requested data is found in cache

87
New cards

what is a cache miss

a lookup is resolved outside of the cache

88
New cards

what are types of cache misses and their definitions?

1. compulsory misses: data brought into the cache for the first time. ex: booting

2. capacity misses: caused by the limited size of a cache

3. misses due to competing cache entries

4. policy misses

—> C3-PO

89
New cards

what are some design issues of caching

1. how a cache entry lookup is performed

2. which cache entry should be replaced when the cache is full

3. how to maintain consistency between the cache copy and the real data

90
New cards

what are some ways to perform TLB lookups?

1. direct mapping- assigns each virtual page to a specific slot in the TLB

2. set associativity- used N TLB banks to perform lookups in parallel

3. fully associative cache- allows looking up all TLB entries in parallel

91
New cards

what are the steps to carry out a page fault

1. choose a page

2. if the page has been modified, write its contents to storage

3. change the corresponding page table entry and TLB entry

4. load new page into memory from storage

5. update page table entry

6. continue the thread

—> OS performs these steps while also running other processes (ex:hiring and firing someone)

92
New cards

what are transparent page faults

invisible mechanisms, a process does not know how it happened

93
New cards

what are some page replacement policies and their meaning

1. random replacement- replace a random page

2. FIFO- toss out the oldest page

3. Optimal (MIN)- replaces the page that will not be used for the longest time

4. Least Recently Used- replaces the page that has not been used for the longest time

5. Least frequently used- replaces the page that is used least often

94
New cards

what is the difference between a compulsory miss and a page fault

a compulsory miss can occur at various levels in the memory hierarchy, page faults occur when a page is not in the main memory

95
New cards

What is the clock algorithm?

replaces an old page, but not the oldest page

96
New cards

What is the Nth chance algorithm?

a page replacement variant of the clock algorithm, a page has to be swept N times before being replaced

97
New cards

what is device management

the OS component that manages hardware devices

98
New cards

what is a network device

transmits data packets

99
New cards

what are the components of a device controller

device registers and a data buffer

100
New cards

what are some ways to access a device?

1. polling

2. Interrupt driven I/Os

3. Direct Memory Access

4. double buffering