Operating Systems Flashcards

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

1/56

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.

57 Terms

1
New cards

Operating systems

Check the program format, executable or not? Identify the instruction
and data offset from program header for addressing, create a new process, and link the program. This process will actually
handle the execution of program

2
New cards

An OS ARCHITECTURE serves 3 types of users by

Give users a desktop environment, Give applications a more usable abstraction of the hardware, Give hardware manufacturers an abstraction of the applications

3
New cards

What is the hardware interface

The physical reality

4
New cards

What is the application Interface

The nicer abstraction

5
New cards

System-call interface maintains


a table indexed according to these numbers

6
New cards

Process is

a running instance of a program

7
New cards

CPU Scheduling Information contains

priorities, scheduling and queue pointers

8
New cards

Memory Management Information contains

memory allocated to the process

9
New cards

Accounting Information contains

The CPU used, clock time elapsed
since start, time limits

10
New cards

I/O status information contains

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

11
New cards

fork() system call creates

new process

12
New cards

Cascading termination means

all child, grandchild etc., are terminated by OS is parent exits

13
New cards

Processes can communicate only if

they share a mailbox

14
New cards

Non-Blocking is considered

asynchronous

15
New cards

Named Pipes can be accessed without a

parent-child relationship

16
New cards

Stub

client-side proxy for the actual procedure on the server

17
New cards

The client-side stub locates

the server and marshalls the parameters

18
New cards

The User Experience Layer

Defines the software interface that allows users to interact with the computing devices

19
New cards

Application frameworks layer

This layer includes the Cocoa and Cocoa Touch frameworks, which provide an API for the Objective-C and Swift programming languages

20
New cards

Core frameworks

This layer defines frameworks that support graphics and media including, Quicktime and OpenGL

21
New cards

Kernel environment

This environment, also known as Darwin, includes the Mach microkernel and the BSD UNIX kernel. We will elaborate on Darwin shortly.

22
New cards

What do system calls provide

An interface to the services made available by an operating system. These calls are generally available as functions written in C and C++, although certain low-level tasks may have to be written using assembly-language instructions.

23
New cards

A thread is

a basic unit of CPU utilization

24
New cards

Process creation is ________ weight

heavy

25
New cards

Thread creation is _______ weight

light

26
New cards

Concurrency

A multi-threaded application running on a traditional single-core chip would have to interleave the threads

27
New cards

Parallelism

On a multi-core chip, the threads could be spread across the available cores, allowing true parallel processing

28
New cards

OpenMP is a

set of compiler directives available for C, C++, or FORTRAN programs

29
New cards

OpenMP’s main function is to

Instruct the compiler to automatically generate parallel code where appropriate

30
New cards

Concurrent

Removed in FIFO order but several may beat the same time

31
New cards

CPU scheduling decisions may take place when a process

  • Switches from running to waiting state, i.e., I/O request or event wait
    - Switches from running to ready state,
    - Switches from waiting to ready, i.e. I/O or events completed
    - Terminates

32
New cards

CPU Utilization

# of work cycle / # of (work + idle) cycle

33
New cards

Throughput

# of processes completed per unit time

34
New cards

Turnaround time

amount of time required for a particular process to complete, from submission time to completion (Wall-clock time)

35
New cards

Waiting time

amount of time a process has been waiting in the ready queue

36
New cards

Response time

The time taken in an interactive program from the issuance of a command to the commence of a response to that command

37
New cards

Race Condition occurs when

two or more threads have access to shared data and they try to change the data at the same time, resulting in dirty data (i.e., data inconsistency) issue

38
New cards

Synchronization uses

synchronized operations to ensure cooperation among multiple threads

39
New cards

Critical Section is a

piece of code to access/update the

shared data; only one thread can

access/update it at a time

40
New cards

Mutual Exclusion

ensures one thread can do something without the interference of other threads

41
New cards

The two parts of Mutual Exclusion are

Liveness and Safety

42
New cards

Liveness Violation

A thread requested access to the critical section, but failed to get it

43
New cards

Primitive atomic operations run

Entirely independently and uninterruptible

44
New cards

Locking Primitives

Reliable atomic synchronization operations

45
New cards

Liveness locks allow

only a single thread into critical section

46
New cards

Mutex stands for

Mutual Exclusion

47
New cards

Semaphore is like a

blocking integer

48
New cards

With each semaphore there is an associated

waiting queue

49
New cards

Monitors

A high-level abstraction that ensures a more reliable, convenient, and effective synchronization mechanism

50
New cards

Readers only

read the data set, they don’t perform any updates

51
New cards

Writers can both

read and write

52
New cards

The first readers-writers problem

gives priority to readers

53
New cards

The second readers-writers problem

gives priority to the writers

54
New cards

The conditions for Deadlocks are

A. Mutual Exclusion: only one thread at

a time can use a resource
B. Hold and Wait: a thread holding at

least one resource is waiting to acquire

additional resources held by other

threads
C. No Preemption
D. Circular Wait

55
New cards

Deadlock prevention ensures that

at least one of the necessary

conditions to cause a deadlock will

never occur

56
New cards

Deadlock avoidance ensures that

the system will not enter an unsafe

state

57
New cards