LQ1 - Operating Systems - Threads & Concurrency

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

1/53

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

54 Terms

1
New cards

heavy weight, light weight

process creation is ____ ____ while thread creation is ____ ____

2
New cards

parallelism

implies a system can perform more than one task simultaneously

3
New cards

concurrency

supports more than one task making progress

4
New cards

data parallelism

distributes subsets of the same data across multiple cores, same operation on each

5
New cards

task parallelism

distributing threads across cores, each thread performing a unique operation

6
New cards

Amdahl’s Law

identifies performance gains from adding additional cores to an application that has both serial and parallel components

7
New cards

user threads

management done by user-level threads library

8
New cards
  • POSIX Pthreads

  • Windows threads

  • Java threads

enumerate the three primary thread libraries

9
New cards

kernel threads

threads which are supported by the kernel

10
New cards

many-to-one

is a multithreading model where user-level threads are mapped to a single kernel thread

11
New cards

many-to-one

is a multithreading model where one thread blocking causes all to be blocked.

12
New cards

many-to-one

is a multithreading model where multiple threads may not run in parallel on muticore system because only one may be in kernel at a time.

13
New cards

one-to-one

is a multithreading model where each user-level thread maps to a kernel thread

14
New cards

many-to-many

is a multithreading model that allows many user level threads to be mapped to many kernel threads

15
New cards

many-to-many

is a multithreading model that allows the operating system to create a sufficient number of kernel threads

16
New cards

two-level model

is a multithreading model that is similar to M:M, except that it allows a user thread to be bound to

kernel thread

17
New cards

thread library

provides programmer with API for creating and managing threads

18
New cards
  • library entirely in user space

  • kernel-level library supported by the OS

two main ways of implementing thread libraries

19
New cards

Pthreads

A POSIX standard (IEEE 1003.1c) API for thread creation and synchronization. It be provided either as user-level or kernel-level.

20
New cards

implicit threading

Creation and management of threads done by compilers and run-time libraries rather than programmers

21
New cards
  • Thread Pools

  • Fork-Join

  • OpenMP

  • Grand Central Dispatch

  • Intel Threading Building Blocks

what are the five methods of implicit threading?

22
New cards

thread pools

An implicit threading method where a number of threads are created in a pool where they await work

23
New cards

Fork-Join Parallelism

An implicit threading method where multiple threads (task) are forked and then joined

24
New cards

Grand Central Dispatch

An implicit threading method that extends to C, C++ and Objective-C languages, API, and run-time

library.

It allows identification of parallel sections. It also manages most of the details of threading and puts blocks in “^{}”.

25
New cards

serial, main queue

____ is a type of dispatch queue where blocks are removed in FIFO order, queue is per process, called ___ ____

26
New cards

concurrent

is a type of dispatch queue where blocks are removed in FIFO order but several may be removed at a time

27
New cards

signals

are used in UNIX systems to notify a process that a particular event has occurred.

28
New cards

signal handler

is used to process signals

29
New cards

default handler

Every signal has ___ ____ that kernel runs when handling signal

30
New cards

user-defined

____ signal handler can override default

31
New cards

thread cancellation

Terminating a thread before it has finished

32
New cards

target thread

Thread to be canceled

33
New cards

Asynchronous cancellation

terminates the target thread immediately

34
New cards

Deferred cancellation

allows the target thread to periodically check if it should be cancelled. It is the default type of thread cancellation.

35
New cards

signals

On Linux systems, thread cancellation is handled through ___

36
New cards

interrupt()

Deferred cancellation uses the ____ method

37
New cards

Thread-local storage (TLS)

allows each thread to have its own copy of data

38
New cards

Thread-local storage (TLS)

Useful when you do not have control over the thread creation process

39
New cards

lightweight process (LWP)

An intermediate data structure between user and kernel threads

40
New cards

lightweight process (LWP)

Appears to be a virtual processor on which process can schedule user thread to run

41
New cards

upcalls

a communication mechanism, provided by scheduler activations, from the kernel to the upcall handler in the thread library

42
New cards

Windows API

primary API for Windows applications

43
New cards

context

The register set, stacks, and private storage area are known as the ___ of the thread

44
New cards
  • thread id

  • register set representing state of processor

  • separate user and kernel stacks for when thread runs in user mode or kernel mode

  • Private data storage area used by run-time libraries and dynamic link libraries (DLLs)

enumerate the components each windows thread has

45
New cards

ETHREAD (executive thread block)

a primary data structure of a Windows thread that includes pointer to process to which thread belongs and to KTHREAD, in kernel space

46
New cards

KTHREAD (kernel thread block)

a primary data structure of a Windows thread with scheduling and synchronization info, kernel-mode stack, pointer to TEB, in kernel space

47
New cards

TEB (thread environment block)

a primary data structure of a Windows thread with thread id, user-mode stack, thread-local storage, in user space

48
New cards

tasks

the Linux term for threads

49
New cards

clone()

system call to create a thread in Linux

50
New cards

struct task_struct

points to process data structures (shared or unique)

51
New cards

CLONE_FS

a Linux flag that indicates that File-system information is shared

52
New cards

CLONE_VM

a Linux flag that indicates that the same memory space is shared

53
New cards

CLONE_SIGHAND

a Linux flag that indicates that signal handlers are shared.

54
New cards

CLONE_FILES

a Linux flag that indicates that the set of open files is shared.