LQ1 - Operating Systems - Processes

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

1/64

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

65 Terms

1
New cards

process

a program in execution

2
New cards

false

true or false: process execution must progress in parallel fashion. No sequential execution of instructions of a single process

3
New cards
  • program code/text section

  • current activity

  • stack

  • data section

  • heap

parts of a process

4
New cards

heap

it contains memory dynamically allocated during run time

5
New cards

stack

contains temporary data, such as function parameters, return addresses, local variables

6
New cards

process control block (PCB) / task control block

information associated with each process

7
New cards
  • process state

  • program counter

  • CPU registers

  • CPU scheduling information

  • memory-management information

  • accounting information

  • i/o status information

enumerate the parts of a process control block

8
New cards

process scheduling

Selects among available processes for next execution on CPU core

9
New cards

ready queue

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

10
New cards

wait queues

set of processes waiting for an event

11
New cards

context switch

occurs when the CPU switches from one process to another

12
New cards

true

true or false: 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

13
New cards

parent, children

____ process create ____ processes, which, in turn create other processes, forming a tree of processes

14
New cards

process identifier (PID)

Process are identified and manage via a ___ ___

15
New cards

fork()

a UNIX system call to create a new process

16
New cards

exec()

a UNIX system call used after a fork() to replace the process’ memory space with a new program

17
New cards

service

Android background processes use ___ to perform task. This can keep running even if background process is suspended.

18
New cards

wait()

a UNIX system call used to wait for the child to terminate

19
New cards

exit()

Process executes last statement and then asks the operating system to delete it using the ___ system call.

20
New cards

abort()

Parent may terminate the execution of children processes using the ___ system call.

21
New cards
  • child has exceeded allocated resources

  • task assigned to child is no longer required

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

what are the reasons for parents to terminate the execution of children processes?

22
New cards

cascading termination

All children, grandchildren, etc., are terminated.

23
New cards

zombie

If no parent waiting (did not invoke wait()) process is a ___

24
New cards

orphan

If parent terminated without invoking wait(), process is an

25
New cards

browser process

A type of process found in a browser that manages user interface, disk and network I/O

26
New cards

renderer process

A type of process found in a browser that renders web pages, deals with HTML, Javascript. A new renderer created for each website opened

27
New cards

sandbox

restricts disk and network I/O, and minimizes the effect of security exploits

28
New cards

plug-in process

A type of process found in a browser that runs for each type of plug-in

29
New cards

cooperating process

a type of process that can affect or be affected by other processes, including sharing data

30
New cards

interprocess communication (IPC)

Cooperating processes need___ ___

31
New cards
  • shared memory

  • message passing

What are the two models of IPC?

32
New cards

producer, consumer

___ process produces information that is consumed by a ___ process

33
New cards

unbounded-buffer

places no practical limit on the size of the buffer:

  • producer never waits

  • consumer waits if there is no buffer to consume

34
New cards

bounded-buffer

assumes that there is a fixed buffer size

  • producer must wait if all buffers are full

  • consumer waits if there is no buffer to consume

35
New cards

IPC - shared memory

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

36
New cards

IPC - message passing

Processes communicate with each other without resorting to shared variables

37
New cards

communication link

If processes P and Q wish to communicate, they need to establish a ___ ___ between them

38
New cards

direct communication

an implementation of a communication link wherein processes must name each other explicitly

39
New cards

indirect communication

an implementation of a communication link wherein messages are directed and received from mailboxes

40
New cards

blocking is considered synchronous, whereas non-blocking is considered asynchronous

What is the difference between blocking and non-blocking in message passing

41
New cards

rendezvous

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

42
New cards

buffering

queue of messages attached to the link

43
New cards

zero capacity

an implementation of buffering wherein no messages are queued on a link. Sender must wait for receiver (rendezvous)

44
New cards

bounded capacity

an implementation of buffering wherein the length of n messages is finite. Sender must wait if link is full.

45
New cards

unbounded capacity

an implementation of buffering wherein the length of n messages is infinite. Sender never waits.

46
New cards

pipes

acts as a conduit that allows two processes to communicate

47
New cards

ordinary pipes

a type of pipe that cannot be accessed from outside the process that created it. Typically, a parent process creates a pipe and uses it to communicate with a child process it created.

48
New cards

named pipes

a type of pipe that can be accessed without a parent-child relationship

49
New cards

ordinary pipes (or anonymous pipes)

a unidirectional pipe where they allow communication in standard producer-consumer style

50
New cards

named pipes

a bidirectional pipe where several processes can use it for communication.

51
New cards

socket

an endpoint for communication, represented as a concatenation of IP addresses and port.

52
New cards

port

a number included at start of message packet to differentiate network services on a host

53
New cards

loopback

a special IP address to refer to system on which process is running

54
New cards

sockets

communication consists between a pair of ____

55
New cards

remote procedure calls (RPC)

abstracts procedure calls between processes on network systems

56
New cards

stubs

client-side proxy for the actual procedure on the server

57
New cards

marshalls

in the context of RPCs, the client-side stub locates the server and ____ the parameters

58
New cards

Microsoft Interface Definition Language (MIDL)

On Windows, stub code compile from specification written in

59
New cards

External Data Representation (XDL)

RPC data representation is handled via ___ ___ ___ format to account for different architectures

60
New cards

rendezvous/matchmaker

OS typically provides a ______ service to connect client and server

61
New cards

the program counter and other registers

the status of the current activity of a process is represented by?

62
New cards
  1. ready

  2. running

  3. waiting

  4. terminated

what are the four general states of a process?

63
New cards

process control block (PCB)

the kernel data structure that represents a process in an operating system

64
New cards

sockets

allow two processes on different machines to communicate over a network.

65
New cards

remote procedure calls (RPC)

They abstract the concept of function calls in such a way that a function can be invoked on another process that may reside on a separate computer.