CH 4
CH 4
Concurrency
Operating System Concepts – 10th Edition Silberschatz, Galvin and Gagne ©2018
Outline
Overview
Multicore Programming
Multithreading Models
Thread Libraries
Implicit Threading
Threading Issues
Operating System Examples
Operating System Concepts – 10th Edition 4.2 Silberschatz, Galvin and Gagne ©2018
Objectives
Operating System Concepts – 10th Edition 4.3 Silberschatz, Galvin and Gagne ©2018
Motivation
Operating System Concepts – 10th Edition 4.4 Silberschatz, Galvin and Gagne ©2018
Single and Multithreaded Processes
Operating System Concepts – 10th Edition 4.5 Silberschatz, Galvin and Gagne ©2018
Multithreaded Server Architecture
Operating System Concepts – 10th Edition 4.6 Silberschatz, Galvin and Gagne ©2018
Benefits
Operating System Concepts – 10th Edition 4.7 Silberschatz, Galvin and Gagne ©2018
Multicore Programming
Multicore or multiprocessor systems puts pressure on programmers,
challenges include:
• Dividing activities
• Balance
• Data splitting
• Data dependency
• Testing and debugging
Parallelism implies a system can perform more than one task
simultaneously
Concurrency supports more than one task making progress
• Single processor / core, scheduler providing concurrency
Operating System Concepts – 10th Edition 4.8 Silberschatz, Galvin and Gagne ©2018
Concurrency vs. Parallelism
Concurrent execution on single-core system:
Operating System Concepts – 10th Edition 4.9 Silberschatz, Galvin and Gagne ©2018
Multicore Programming
Types of parallelism
• Data parallelism – distributes subsets of the same data
across multiple cores, same operation on each
• Task parallelism – distributing threads across cores, each
thread performing unique operation
Operating System Concepts – 10th Edition 4.10 Silberschatz, Galvin and Gagne ©2018
Data and Task Parallelism
Operating System Concepts – 10th Edition 4.11 Silberschatz, Galvin and Gagne ©2018
User Threads and Kernel Threads
Operating System Concepts – 10th Edition 4.12 Silberschatz, Galvin and Gagne ©2018
User and Kernel Threads
Operating System Concepts – 10th Edition 4.13 Silberschatz, Galvin and Gagne ©2018
Multithreading Models
Many-to-One
One-to-One
Many-to-Many
Operating System Concepts – 10th Edition 4.14 Silberschatz, Galvin and Gagne ©2018
Many-to-One
Operating System Concepts – 10th Edition 4.15 Silberschatz, Galvin and Gagne ©2018
One-to-One
Operating System Concepts – 10th Edition 4.16 Silberschatz, Galvin and Gagne ©2018
Many-to-Many Model
Allows many user level threads to be mapped to many kernel threads
Allows the operating system to create a sufficient number of kernel
threads
Windows with the ThreadFiber package
Otherwise not very common
Operating System Concepts – 10th Edition 4.17 Silberschatz, Galvin and Gagne ©2018
Two-level Model
Similar to M:M, except that it allows a user thread to be bound to
kernel thread
Operating System Concepts – 10th Edition 4.18 Silberschatz, Galvin and Gagne ©2018
Thread Libraries
Operating System Concepts – 10th Edition 4.19 Silberschatz, Galvin and Gagne ©2018
Strategies of thread creation
Synchronous
• Parent creates child threads
• Parent and child can then execute concurrently
• Used in servers and responsive user interfaces
Asynchronous
• Parent creates child threads
• Parent halts its execution and the created child threads can
execute concurrently.
• Once the child threads complete execution, they exit
• After exiting, the parent thread resumes execution.
• Used when result of various child threads need to be combined.
Operating System Concepts – 10th Edition 4.20 Silberschatz, Galvin and Gagne ©2018
Pthreads
Operating System Concepts – 10th Edition 4.21 Silberschatz, Galvin and Gagne ©2018
Pthreads Example
Operating System Concepts – 10th Edition 4.22 Silberschatz, Galvin and Gagne ©2018
Pthreads Example (Cont.)
Operating System Concepts – 10th Edition 4.23 Silberschatz, Galvin and Gagne ©2018
Pthreads Code for Joining 10 Threads
Operating System Concepts – 10th Edition 4.24 Silberschatz, Galvin and Gagne ©2018
Windows Multithreaded C Program
Operating System Concepts – 10th Edition 4.25 Silberschatz, Galvin and Gagne ©2018
Windows Multithreaded C Program (Cont.)
Operating System Concepts – 10th Edition 4.26 Silberschatz, Galvin and Gagne ©2018
Java Threads
Operating System Concepts – 10th Edition 4.27 Silberschatz, Galvin and Gagne ©2018
Java Threads
Implementing Runnable interface:
Creating a thread:
Waiting on a thread:
Operating System Concepts – 10th Edition 4.28 Silberschatz, Galvin and Gagne ©2018
Java Executor Framework
Rather than explicitly creating threads, Java also allows thread creation
around the Executor interface:
Operating System Concepts – 10th Edition 4.29 Silberschatz, Galvin and Gagne ©2018
Java Executor Framework
Operating System Concepts – 10th Edition 4.30 Silberschatz, Galvin and Gagne ©2018
Java Executor Framework (Cont.)
Operating System Concepts – 10th Edition 4.31 Silberschatz, Galvin and Gagne ©2018
Implicit Threading
Operating System Concepts – 10th Edition 4.32 Silberschatz, Galvin and Gagne ©2018
Thread Pools
Create a number of threads in a pool where they await work
Advantages:
• Usually slightly faster to service a request with an existing thread
than create a new thread
• Allows the number of threads in the application(s) to be bound to
the size of the pool
• Separating task to be performed from mechanics of creating task
allows different strategies for running task
i.e,Tasks could be scheduled to run periodically
Windows API supports thread pools:
Operating System Concepts – 10th Edition 4.33 Silberschatz, Galvin and Gagne ©2018
Java Thread Pools
Operating System Concepts – 10th Edition 4.34 Silberschatz, Galvin and Gagne ©2018
Java Thread Pools (Cont.)
Operating System Concepts – 10th Edition 4.35 Silberschatz, Galvin and Gagne ©2018
Fork-Join Parallelism
Operating System Concepts – 10th Edition 4.36 Silberschatz, Galvin and Gagne ©2018
Fork-Join Parallelism
Operating System Concepts – 10th Edition 4.37 Silberschatz, Galvin and Gagne ©2018
Fork-Join Parallelism
Operating System Concepts – 10th Edition 4.38 Silberschatz, Galvin and Gagne ©2018
Fork-Join Parallelism in Java
Operating System Concepts – 10th Edition 4.39 Silberschatz, Galvin and Gagne ©2018
Fork-Join Parallelism in Java
Operating System Concepts – 10th Edition 4.40 Silberschatz, Galvin and Gagne ©2018
Fork-Join Parallelism in Java
Operating System Concepts – 10th Edition 4.41 Silberschatz, Galvin and Gagne ©2018
OpenMP
Operating System Concepts – 10th Edition 4.42 Silberschatz, Galvin and Gagne ©2018
Run the for loop in parallel
Operating System Concepts – 10th Edition 4.43 Silberschatz, Galvin and Gagne ©2018
Grand Central Dispatch
Apple technology for macOS and iOS operating systems
Extensions to C, C++ and Objective-C languages, API, and run-time
library
Allows identification of parallel sections
Manages most of the details of threading
Block is in “^{ }” :
ˆ{ printf("I am a block"); }
Operating System Concepts – 10th Edition 4.44 Silberschatz, Galvin and Gagne ©2018
Grand Central Dispatch
Two types of dispatch queues:
• serial – blocks removed in FIFO order, queue is per process,
called main queue
Programmers can create additional serial queues within
program
• concurrent – removed in FIFO order but several may be removed
at a time
Four system wide queues divided by quality of service:
o QOS_CLASS_USER_INTERACTIVE
o QOS_CLASS_USER_INITIATED
o QOS_CLASS_USER_UTILITY
o QOS_CLASS_USER_BACKGROUND
Operating System Concepts – 10th Edition 4.45 Silberschatz, Galvin and Gagne ©2018
Grand Central Dispatch
Operating System Concepts – 10th Edition 4.46 Silberschatz, Galvin and Gagne ©2018
Intel Threading Building Blocks (TBB)
The same for loop written using TBB with parallel_for statement:
Operating System Concepts – 10th Edition 4.47 Silberschatz, Galvin and Gagne ©2018
End of Chapter 4
Operating System Concepts – 10th Edition Silberschatz, Galvin and Gagne ©2018