Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8 th Edition Chapter...

Preview:

Citation preview

Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Chapter 4: Threads

Rev. by Kyungeun Park, 2015

4.2 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Chapter 4: Threads

Overview

Multicore Programming

Multithreading Models

Thread Libraries

Implicit Threading

Threading Issues

Operating System Examples

4.3 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Objectives

To introduce the notion of a thread — a fundamental unit of CPU utilization that forms the basis of multithreaded computer systems

To discuss the APIs for the Pthreads, Windows, and Java thread libraries

To explore several strategies that provide implicit threading

To examine issues related to multithreaded programming

To cover operating system support for threads in Windows and Linux

4.4 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Motivation

Most modern applications are multithreaded

Threads run within application

Multiple tasks with the application can be implemented by separate threads

Update display

Fetch data

Spell checking

Answer a network request

Process creation is heavy-weight while thread creation is light-weight

Can simplify code, increase efficiency

Kernels are generally multithreaded

4.5 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Multithreaded Server Architecture

* Multithreaded Web Server

4.6 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Benefits

Responsiveness May allow continued execution if part of process is blocked.

Important for user interface

Work well with an interactive application

Resource Sharing Share the resources of the process, easier than shared memory or message passing

Economy Cheaper than process creation

Creating a process : thirty times slower than creating a thread

Thread switching lower overhead than context switching

Scalability Threads are running in parallel on different processors.

Process can take advantage of multiprocessor architectures.

4.7 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Multicore Programming

Multicore system Multiple computing cores on a single chip

More efficient use of multiple cores and improved concurrency of multithreaded programming

Multicore systems putting pressure on programmers to make better use of the multiple computing cores

Challenges in programming for multicore systems include: Dividing activities (identification of separate and concurrent tasks)

Balance (equal work of equal value)

Data splitting (data separation by tasks)

Data dependency (synchronization required)

Testing and debugging (many execution paths)

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

4.8 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Concurrency vs. Parallelism Concurrent execution on single-core system: (without parallelism)

• concurrency as an interleaving

• only one thread at a time (illusion of parallelism by rapidly switching between processes)

Parallelism on a multi-core system:

• Threads can run in parallel

• A separate thread to each core

4.9 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Single and Multithreaded Processes

4.10 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Amdahl’s Law

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

Amdahl’s Law S is serial portion

N processing cores

I.e. if application is 75% parallel / 25% serial, moving from 1 to 2 cores results in speedup of 1.6 times

As N approaches infinity, speedup converges to 1 / S

Serial portion of an application has disproportionate effect on performance gained by adding additional cores

4.11 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

User Threads and Kernel Threads

User threads - management done by user-level threads library

Three primary thread libraries:

POSIX Pthreads

Win32 threads

Java threads

Kernel threads - Supported by the Kernel (the operating system)

Examples – virtually all general purpose operating systems, including:

Windows

Solaris

Linux

Tru64 UNIX

Mac OS X

4.12 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Multithreading Models

Multithreading Relationship between user threads and kernel threads

Many-to-One

One-to-One

Many-to-Many

4.13 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Many-to-One

Many user-level threads mapped to single kernel thread

Managed by the thread library in user space

One thread blocking causes all to block (e.g. a blocking system call made by a thread)

Multiple threads may not run in parallel on multicore system because only one may be in kernel at a time

Few systems currently use this model

Examples: Solaris Green Threads

GNU Portable Threads

4.14 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

One-to-One Each user-level thread maps to kernel thread which may be run in parallel on

multiprocessors

Drawback: crating a user thread requires creating the corresponding kernel thread (limited number of threads)

More concurrency than many-to-one

Number of threads per process sometimes restricted due to overhead

Examples Windows NT/XP/2000

Linux

Solaris 9 and later

4.15 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

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

Solaris prior to version 9

4.16 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Two-level Model

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

Examples IRIX

HP-UX

Tru64 UNIX

Solaris 8 and earlier

4.17 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Thread Libraries

Thread library provides programmer with API for creating and managing threads

Two primary ways of implementing

Library entirely in user space

Kernel-level library supported by the OS

4.18 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Pthreads

May be provided either as user-level or kernel-level

A POSIX standard (IEEE 1003.1c) API for thread creation and synchronization

Specification, not implementation:

API specifies behavior of the thread library, implementation is up to development of the library

Common in UNIX operating systems (Solaris, Linux, Mac OS X)

4.19 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Pthreads Example

4.20 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Pthreads Example (Cont.)

4.21 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Pthreads Code for Joining 10 Threads

4.22 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Win32 API Multithreaded C Program

4.23 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Win32 API Multithreaded C Program (Cont.)

4.24 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Java Threads

Java threads are managed by the JVM

Typically implemented using the threads model provided by underlying OS

Java threads may be created by:

Extending Thread class Implementing the Runnable interface

4.25 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Java Multithreaded Program

4.26 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Java Multithreaded Program (Cont.)

4.27 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Implicit Threading

Growing multicore processing results in applications containing hundreds, or even thousands of threads program correctness more difficult with explicit threads

As a solution, creation and management of threads done by compilers and run-time libraries rather than programmers: implicit threading

Three alternative approaches for designing multithreaded programs with multicore processors through implicit threading

Thread Pools

OpenMP

Grand Central Dispatch

Other methods include Microsoft Threading Building Blocks (TBB), java.util.concurrent package

4.28 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Thread Pools Thread pool: Create a number of threads at process startup and place them into a

pool where they await work

A Request awakens a thread from the pool

Completion returns to the pool

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

Because unlimited threads could exhaust system resources, such as CPU time or memory.

Separating the tasks from the details of creating the tasks task running strategies with scheduling by time delay or periodic scheduling

Windows API for supporting thread pools:

Declaring a thread function

DWORD WINAPI PoolFunction(AVOID Param) {

/* This function runs as a separate thread. */

}

Invoking a thread function, PoolFunction() declared as a thread’s task

QueueUserWorkItem(&PoolFunction, NULL,0);

4.29 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

OpenMP

Set of compiler directives and an API for C, C++, FORTRAN programs

Provides support for parallel programming in shared-memory environments

Identifies parallel regions as blocks of code that may run in parallel

Let compilers process multithreaded parallel program with conditional compiling directives

Allows developers to choose among several levels of parallelism

Available on several compilers for Linux, Windows, and Mac OS X systems

#pragma omp parallel

Create as many threads as there are cores in the system

#pragma omp parallel for

for(i=0;i<N;i++) {

c[i] = a[i] + b[i];

}

Run for loop in parallel

4.30 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Grand Central Dispatch (GCD)

GCD is a technology for Apple’s Mac OS X and iOS operating systems

Extensions to C, C++ languages, API, and run-time library

Allows developers to identify parallel sections

GCD manages most of the details of threading

GCD identifies extensions to the C and C++ languages known as blocks

Block is in “^{ }” : ˆ{ printf("I am a block"); }

GCD schedules blocks for run-time execution by placing them on a dispatch queue Assigned to available thread in thread pool when removed from queue

Two types of dispatch queues: serial queue – blocks removed in FIFO order, queue is per process, called main queue

Programmers can create additional serial queues within program

concurrent queue – removed in FIFO order but several may be removed at a time

Three system wide queues with priorities low, default, high

4.31 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Threading Issues Changes in the traditional semantics of fork() and exec() system calls in a

multithreaded program:

Does fork() duplicate only the calling thread or all threads from the new process? Two versions of fork() system call

When one thread in a program calls fork() : duplicate all threads or only the thread invoked the fork()

Depending on application, duplicate all threads of the process or only the calling thread

– If exec() called immediately after forking: duplicate only the calling thread

– If not calling exec() after forking: duplicate all threads

4.32 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Signal Handling Signals are used in UNIX systems to notify a process that a particular event

has occurred.

A signal may be received either synchronously or asynchronously, depending on the source of the event and reason for the event.

All signals follow the same pattern:

1. Signal is generated by a particular event.

2. Signal is delivered to a process

3. Once delivered, the signal must be handled by one of two signal handlers:

A default signal handler

A user-defined signal handler overriding default

For single-threaded, signal delivered to process

Options in multi-threaded programs: Deliver the signal to the thread to which the signal applies

Deliver the signal to every thread in the process

Deliver the signal to certain threads in the process

Assign a specific thread to receive all signals for the process

4.33 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Thread Cancellation Thread cancellation: terminating a thread before it has completed

Thread to be canceled is target thread

The task of terminating a thread before it has completed

Stopping a Web browser

Asynchronous cancellation terminates the target thread immediately.

Deferred cancellation allows the target thread to periodically check if it should be canceled (self termination)

Pthread code to create and cancel a thread:

4.34 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Thread Cancellation (Cont.)

Invoking thread cancellation requests cancellation, but actual cancellation depends on thread state

If thread has cancellation disabled, cancellation remains pending until thread enables it

Default type is deferred Cancellation only occurs when thread reaches cancellation point

i.e. pthread_testcancel()

Then cleanup handler is invoked

On Linux systems, thread cancellation is handled through signals

4.35 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Thread-Local Storage

Thread-local storage (TLS) allows each thread to have its own copy of data

Useful when you do not have control over the thread creation process (i.e., when using a thread pool)

Different from local variables

Local variables visible only during single function invocation

TLS visible across function invocations

Similar to static data

TLS is unique to each thread

4.36 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Scheduler Activations Communication between the kernel and the thread library

Required by both M:M and Two-level models to maintain the appropriate number of kernel threads allocated to the application

Scheduler activation : one scheme for communication between the user-thread library and the kernel.

The kernel provides an application with a set of virtual processors (LWPs).

The application can schedule user threads onto an available virtual processor.

Scheduler activations provide upcalls - a communication mechanism from the kernel to the thread library

Upcall is made by the kernel to inform an application about certain events. (informing application that a thread is about to block and identifying the specific thread)

This communication allows an application to maintain the correct number of kernel threads.

4.37 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Lightweight Processes

Intermediate data structure between the user and kernel threads Lightweight process (LWP)

To the user-thread library, the LWP appears to be a virtual processor on which the application can schedule a user thread to run.

Each LWP is attached to a kernel thread.

Operating system schedules kernel threads to run on physical processors.

If a kernel thread blocks, the LWP blocks, as well.

The user-level thread also blocks.

upcalls

4.38 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Operating System Examples

Windows Threads

Linux Threads

4.39 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Windows Threads

Implements the one-to-one mapping, kernel-level

Each thread contains A thread id

Register set

Separate user and kernel stacks

Private data storage area

The register set, stacks, and private storage area are known as the context of the threads

The primary data structures of a thread include:

ETHREAD (executive thread block)

KTHREAD (kernel thread block)

TEB (thread environment block)

4.40 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Windows Threads Data Structures

4.41 Silberschatz, Galvin and Gagne ©2011Operating System Concepts Essentials – 8th Edition

Linux Threads

Linux refers to them as tasks rather than threads

Thread creation is done through clone() system call

clone() allows a child task to share the address space of the parent task (process)

Flags control behavior

struct task_struct points to process data structures (shared or unique)

Recommended