1. Trang chủ
  2. » Công Nghệ Thông Tin

Operating System: Chapter 2 - Processes and Threads

55 132 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 55
Dung lượng 5,18 MB

Nội dung

Operating System: Chapter 2 - Processes and Threads presents about Processes (The Process Model, Process Creation, Process Termination, Process Hierarchies, Process States,...), Threadsm, Interprocess communication, Classical IPC problems, Scheduling.

Trang 2

ProcessesThe Process Model

• Multiprogramming of four programs

• Conceptual model of 4 independent, sequential processes

• Only one program active at any instant

Trang 5

Process Hierarchies

• Parent creates a child process, child processes can create its own process

• Forms a hierarchy

– UNIX calls this a "process group"

• Windows has no concept of process hierarchy

– all processes are created equal

Trang 8

Implementation of Processes (1)

Fields of a process table entry

Trang 9

Implementation of Processes (2)

Skeleton of what lowest level of OS does when an 

interrupt occurs

Trang 10

ThreadsThe Thread Model (1)

(a) Three processes each with one thread

(b) One process with three threads

Trang 11

The Thread Model (2)

• Items shared by all threads in a process

• Items private to each thread

Trang 12

The Thread Model (3)

Each thread has its own stack

Trang 13

Thread Usage (1)

A word processor with three threads

Trang 14

Thread Usage (2)

A multithreaded Web server

Trang 16

Thread Usage (4)

Three ways to construct a server

Trang 17

Implementing Threads in User Space

A user­level threads package

Trang 18

Implementing Threads in the Kernel

A threads package managed by the kernel

Trang 19

Hybrid Implementations

    Multiplexing user­level threads onto 

kernel­ level threads

Trang 22

Making Single­Threaded Code Multithreaded (1)

Conflicts between threads over the use of a global variable

Trang 23

Making Single­Threaded Code Multithreaded (2)

Threads can have private global variables

Trang 24

Interprocess Communication

Race Conditions

Two processes want to access shared memory at same time

Trang 26

Critical Regions (2)

Mutual exclusion using critical regions

Trang 27

Mutual Exclusion with Busy Waiting (1)

Proposed solution to critical region problem

(a) Process 0.        (b) Process 1.

Trang 28

Mutual Exclusion with Busy Waiting (2)

Peterson's solution for achieving mutual exclusion

Trang 29

Mutual Exclusion with Busy Waiting (3)

Entering and leaving a critical region using the 

TSL instruction

Trang 30

Sleep and Wakeup

Producer­consumer problem with fatal race condition

Trang 31

Semaphores

The producer­consumer problem using semaphores

Trang 32

Mutexes

Implementation of mutex_lock and mutex_unlock

Trang 33

Monitors (1)

Example of a monitor

Trang 35

Monitors (3)

Solution to producer­consumer problem in Java (part 1)

Trang 36

Monitors (4)

Solution to producer­consumer problem in Java (part 2)

Trang 37

Message Passing

The producer­consumer problem with N messages

Trang 40

Dining Philosophers (2)

A nonsolution to the dining philosophers problem

Trang 41

Dining Philosophers (3)

Solution to dining philosophers problem (part 1)

Trang 42

Dining Philosophers (4)

Solution to dining philosophers problem (part 

2)

Trang 43

The Readers and Writers Problem

A solution to the readers and writers problem

Trang 44

The Sleeping Barber Problem (1)

Trang 45

The Sleeping Barber Problem (2)

Solution to sleeping barber problem.

Trang 47

Introduction to Scheduling (2)

Scheduling Algorithm Goals

Trang 48

Scheduling in Batch Systems (1)

An example of shortest job first scheduling

Trang 49

Scheduling in Batch Systems (2)

Three level scheduling

Trang 51

Scheduling in Interactive Systems (2)

A scheduling algorithm with four priority classes

Ngày đăng: 30/01/2020, 03:08

TỪ KHÓA LIÊN QUAN

w