Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Hệ điều hành
Lecture Operating systems: A concept-based approach (2/e): Chapter 6 - Dhananjay M. Dhamdhere
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Operating systems: A concept-based approach (2/e): Chapter 6 - Dhananjay M. Dhamdhere
Ðại Thống
68
67
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Chapter 6 - Virtual memory. This chapter deals with virtual memory implementation using paging in detail. It discusses how the kernel keeps the code and data of a process on a disk and loads parts of it into memory when required, and how the performance of a process is determined by the rate at which parts of a process have to be loaded from the disk. | PROPRIETARY MATERIAL. © 2007 The McGraw-Hill Companies, Inc. All rights reserved. No part of this PowerPoint slide may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their individual course preparation. If you are a student using this PowerPoint slide, you are using it without permission. Virtual memory Virtual memory is an illusion of a memory that is larger than the real memory Only some parts of a process are loaded in memory, other parts are stored in a disk area called swap space and loaded only when needed It is implemented using noncontiguous memory allocation The memory management unit (MMU) performs address translation. The virtual memory handler (VM handler) is that part of the kernel which manages virtual memory Overview of virtual memory Memory allocation information is stored in a page table or segment | PROPRIETARY MATERIAL. © 2007 The McGraw-Hill Companies, Inc. All rights reserved. No part of this PowerPoint slide may be displayed, reproduced or distributed in any form or by any means, without the prior written permission of the publisher, or used beyond the limited distribution to teachers and educators permitted by McGraw-Hill for their individual course preparation. If you are a student using this PowerPoint slide, you are using it without permission. Virtual memory Virtual memory is an illusion of a memory that is larger than the real memory Only some parts of a process are loaded in memory, other parts are stored in a disk area called swap space and loaded only when needed It is implemented using noncontiguous memory allocation The memory management unit (MMU) performs address translation. The virtual memory handler (VM handler) is that part of the kernel which manages virtual memory Overview of virtual memory Memory allocation information is stored in a page table or segment table; it is used by the memory management unit (MMU) Parts of the process address space are loaded in memory when needed Logical address space, physical address space and address translation Address space of a process is called the logical address space; an address in it is a logical address Memory of the computer constitutes the physical address space; an address in it is a physical address • The MMU translates a logical address into a physical one Paged virtual memory systems A process is split into pages of equal size The size of a page is a power of 2 It simplifies the virtual memory hardware and makes it faster A logical address is viewed as a pair (page #, byte #) The MMU consults the page table to obtain the frame # where page page # resides It juxtaposes the frame # and byte # to obtain the physical address Address translation in a paged virtual memory system MMU uses the page # in a logical address to index the page table It uses the frame number found there to compute .
TÀI LIỆU LIÊN QUAN
Advanced Operating Systems: Lecture 1 - Mr. Farhan Zaidi
Advanced Operating Systems: Lecture 22 - Mr. Farhan Zaidi
Lecture Operating systems: A concept-based approach: Chapter 10 - Dhananjay M. Dhamdhere
Lecture Operating systems: Internals and design principles (6/E): Chapter 2 - William Stallings
Lecture Operating systems: A concept-based approach: Chapter 13 - Dhananjay M. Dhamdhere
Advanced Operating Systems: Lecture 19 - Mr. Farhan Zaidi
Lecture Operating systems: A concept-based approach (2/e): Chapter 15 - Dhananjay M. Dhamdhere
Lecture Operating systems: A concept-based approach: Chapter 1 - Dhananjay M. Dhamdhere
Lecture Operating systems: A concept-based approach: Chapter 2 - Dhananjay M. Dhamdhere
Lecture Operating systems: A concept-based approach: Chapter 3 - Dhananjay M. Dhamdhere
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.