Process Management -Threads

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

1/43

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.

44 Terms

1
New cards

Threads

is a basic unit of CPU utilization

2
New cards

Benefits

Responsiveness - may allow continued execution if part of process is blocked, especially important for user interfaces • Resource Sharing - threads share resources of process, easier than shared memory or message passing • Economy - cheaper than process creation, thread switching lower overhead than context switching • Scalability - process can take advantage of multiprocessor architectures

3
New cards

Kernels are generally multi-threaded

4
New cards

Multicore Programming Challenges

Identifying tasks, Balance, Data splitting, Data dependency, Testing and debugging

5
New cards

Parallelism

implies a system can perform more than one task simultaneously

6
New cards

Concurrency

supports more than one task making progress

7
New cards

Single processor / core, scheduler providing concurrency

8
New cards

Data parallelism

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

9
New cards

Task parallelism

Distributes threads across cores, each thread performing a unique operation

10
New cards

Amdahl's Law

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

11
New cards

S is serial portion

12
New cards

N processing cores

13
New cards

User threads

supported above the kernel and are managed without kernel support

14
New cards

Kernel threads

Supported and managed directly by the OS

15
New cards

Multithreading Models

Many-to-One,

16
New cards

One-to-One,

17
New cards

Many-to-Many

18
New cards

Many-to-One

Many user-level threads mapped to single kernel thread

19
New cards

many-to-one examples

Solaris Green Threads

20
New cards

GNU Portable Threads

21
New cards

One-to-One

Each user-level thread maps to kernel thread

22
New cards

One-to-One examples

Windows

23
New cards

Linux

24
New cards

Solaris 9 and later

25
New cards

Many-to-Many

Many user-level threads mapped to many kernel threads

26
New cards

Many-to-Many examples

Solaris prior to version 9

27
New cards

Windows with the ThreadFiber package

28
New cards

Two - Level Model

Similar to M:M, except that it allows a user thread to be bound to kernel thread

29
New cards

Two - Level Model examples

Tru64 UNIX

30
New cards

Solaris 8 and earlier

31
New cards

A process consisting of n ULTs is to be mapped onto a set of m KLTs. Which combination would not fully utilize available resources?

32
New cards

a. n=m>0

33
New cards

b. n >m = 1

34
New cards

c. m>n>1

35
New cards

d. n>m>1

c. m>n>1

36
New cards

Kernel calls are _ to manage threads.

37
New cards

a. Needed only with KLTs

38
New cards

b. Needed only with ULTs

39
New cards

c. Always needed

40
New cards

d. Never needed

a. Needed only with KLTs

41
New cards

Thread library

provides programmer with API for creating and managing threads

42
New cards

Two primary ways of implementing Thread Library

Library entirely in user space and Kernel-level library supported by the OS

43
New cards

Java Thread

There are two techniques for creating threads in a Java program. One approach is to create a new class that is derived from the Thread class and to override its run() method. An alternative—and more commonly used—

44
New cards

technique is to define a class that implements the Runnable interface.