4.3 Multithreading Models

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

1/9

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.

10 Terms

1
New cards

User-level threads

Threads managed without kernel support.

2
New cards

Kernel-level threads

Threads managed directly by the operating system.

3
New cards

Many-to-One Model

Multiple user threads are mapped to a single kernel thread.

4
New cards

Drawback of Many-to-One Model

If any thread makes a blocking system call, the entire process blocks.

5
New cards

One-to-One Model

Each user thread is mapped to a separate kernel thread.

6
New cards

Advantage of One-to-One Model

Allows greater concurrency and can run multiple threads in parallel on multiprocessors.

7
New cards

Many-to-Many Model

Multiple user threads are mapped to a smaller or equal number of kernel threads.

8
New cards

Advantage of Many-to-Many Model

Allows for many user threads without blocking parallelism.

9
New cards

Two-Level Model

A variation of the many-to-many model where user threads are bound to kernel threads.

10
New cards

Current Trend in Multithreading

Most contemporary OS use the One-to-One Model for its balance of concurrency and simplicity.