深入理解LINUX内核(影印版第3版涵盖2.6版英文版)

深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
分享
扫描下方二维码分享到微信
打开微信,点击右上角”+“,
使用”扫一扫“即可将网页分享到朋友圈。
作者: [美] ,
2019-05
版次: 1
ISBN: 9787564183417
定价: 168.00
装帧: 平装
开本: 16开
纸张: 胶版纸
页数: 923页
正文语种: 英语
9人买过
  •   为了透彻理解Linux的工作机理,以及为何它在各种系统上能顺畅运行,你需要深入到内核的心脏。cPu与外部世界的所有交互活动都是由内核处理的,哪些程序会分享处理器的时间,以什么样的顺序来分享。内核不遗余力地管理有限的内存,以使数以千计的进程有效地共享系统资源。内核还精心组织数据传送,使得cPu不再受限于慢速硬盘。《深入理解LINUX内核(影印版 第3版 涵盖2.6版 英文版)》将领你畅游内核中用到的主要数据结构、算法和编程技巧。如果你的确想了解计算机内部的实现机理,那么作者透过现象探寻本质,提供了颇有价值的深入分析。《深入理解LINUX内核(影印版 第3版 涵盖2.6版 英文版)》针对具体的Intel平台,讨论了其重要特征,逐行剖析了相关的代码片段。但是,《深入理解LINUX内核(影印版 第3版 涵盖2.6版 英文版)》涵盖的内容不仅仅局限于代码的机理,还解释了Linux运作方式的理论支撑。 Preface
    1. Introduction
    Linux Versus Other Unix-Like Kernels
    Hardware Dependency
    Linux Versions
    Basic Operating System Concepts
    An Overview of the Unix Filesystem
    An Overview of Unix Kernels

    2. Memory Addressing
    Memory Addresses
    Segmentation in Hardware
    Segmentation in Linux
    Paging in Hardware
    Paging in Linux

    3. Processes
    Processes, Lightweight Processes, and Threads
    Process Descriptor
    Process Switch
    Creating Processes
    Destroying Processes

    4. Interrupts and Exceptions
    The Role of Interrupt Signals
    Interrupts and Exceptions
    Nested Execution of Exception and Interrupt Handlers
    Initializing the Interrupt Descriptor Table
    Exception Handling
    Interrupt Handling
    Softirqs and Tasklets
    Work Queues
    Returning from Interrupts and Exceptions

    5. Kernel Synchronization
    How the Kernel Services Requests
    Synchronization Primitives
    Synchronizing Accesses to Kernel Data Structures
    Examples of Race Condition Prevention

    6. Timing Measurements
    Clock and Timer Circuits
    The Linux Timekeeping Architecture
    Updating the Time and Date
    Updating System Statistics
    Software Timers and Delay Functions
    System Calls Related to Timing Measurements

    7. Process Scheduling
    Scheduling Policy
    The Scheduling Algorithm
    Data Structures Used by the Scheduler
    Functions Used by the Scheduler
    Runqueue Balancing in Muhiprocessor Systems
    System Calls Related to Scheduling

    8. Memory Management
    Page Frame Management
    Memory Area Management
    Noncontiguous Memory Area Management

    9. Process Address Space
    The Process's Address Space
    The Memory Descriptor
    Memory Regions
    Page Fault Exception Handler
    Creating and Deleting a Process Address Space
    Managing the Heap

    10. System Calls
    POSIX APls and System Calls
    System Call Handler and Service Routines
    Entering and Exiting a System Call
    Parameter Passing
    Kernel Wrapper Routines

    11. Signals
    The Role of Signals
    Generating a Signal
    Delivering a Signal
    System Calls Related to Signal Handling

    12. The Virtual Filesystem
    The Role of the Virtual Filesystem (VFS)
    VFS Data Structures
    Filesystem Types
    Filesystem Handling
    Pathname Lookup
    Implementations of VFS System Calls
    File Locking

    13. I/0 Architecture and Device Drivers
    I/0 Architecture
    The Device Driver Model
    Device Files
    Device Drivers
    Character Device Drivers

    14. Block Device Drivers
    Block Devices Handling
    The Generic Block Layer
    The I/0 Scheduler
    Block Device Drivers
    Opening a Block Device File

    15. The Page Cache
    The Page Cache
    Storing Blocks in the Page Cache
    Writing Dirty Pages to Disk
    The sync(), fsync(), and fdatasync() System Calls

    16. Accessing Files
    Reading and Writing a File
    Memory Mapping
    Direct I/O Transfers
    Asynchronous I/O

    17. Page Frame Reclaiming
    The Page Frame Reclaiming Algorithm
    Reverse Mapping
    Implementing the PFRA
    Swapping

    18. The Ext2 and Ext3 Filesystems
    General Characteristics of Ext2
    Ext2 Disk Data Structures
    Ext2 Memory Data Structures
    Creating the Ext2 Filesystem
    Ext2 Methods
    Managing Ext2 Disk Space
    The Ext3 Filesystem

    19. Process Communication
    Pipes
    FIFOs
    System V IPC
    POSIX Message Queues

    20. Program Execution
    Executable Files
    Executable Formats
    Execution Domains
    The exec Functions
    A. System Startup
    B. Modules
    Bibliography
    Source Code Index
    Index
  • 内容简介:
      为了透彻理解Linux的工作机理,以及为何它在各种系统上能顺畅运行,你需要深入到内核的心脏。cPu与外部世界的所有交互活动都是由内核处理的,哪些程序会分享处理器的时间,以什么样的顺序来分享。内核不遗余力地管理有限的内存,以使数以千计的进程有效地共享系统资源。内核还精心组织数据传送,使得cPu不再受限于慢速硬盘。《深入理解LINUX内核(影印版 第3版 涵盖2.6版 英文版)》将领你畅游内核中用到的主要数据结构、算法和编程技巧。如果你的确想了解计算机内部的实现机理,那么作者透过现象探寻本质,提供了颇有价值的深入分析。《深入理解LINUX内核(影印版 第3版 涵盖2.6版 英文版)》针对具体的Intel平台,讨论了其重要特征,逐行剖析了相关的代码片段。但是,《深入理解LINUX内核(影印版 第3版 涵盖2.6版 英文版)》涵盖的内容不仅仅局限于代码的机理,还解释了Linux运作方式的理论支撑。
  • 目录:
    Preface
    1. Introduction
    Linux Versus Other Unix-Like Kernels
    Hardware Dependency
    Linux Versions
    Basic Operating System Concepts
    An Overview of the Unix Filesystem
    An Overview of Unix Kernels

    2. Memory Addressing
    Memory Addresses
    Segmentation in Hardware
    Segmentation in Linux
    Paging in Hardware
    Paging in Linux

    3. Processes
    Processes, Lightweight Processes, and Threads
    Process Descriptor
    Process Switch
    Creating Processes
    Destroying Processes

    4. Interrupts and Exceptions
    The Role of Interrupt Signals
    Interrupts and Exceptions
    Nested Execution of Exception and Interrupt Handlers
    Initializing the Interrupt Descriptor Table
    Exception Handling
    Interrupt Handling
    Softirqs and Tasklets
    Work Queues
    Returning from Interrupts and Exceptions

    5. Kernel Synchronization
    How the Kernel Services Requests
    Synchronization Primitives
    Synchronizing Accesses to Kernel Data Structures
    Examples of Race Condition Prevention

    6. Timing Measurements
    Clock and Timer Circuits
    The Linux Timekeeping Architecture
    Updating the Time and Date
    Updating System Statistics
    Software Timers and Delay Functions
    System Calls Related to Timing Measurements

    7. Process Scheduling
    Scheduling Policy
    The Scheduling Algorithm
    Data Structures Used by the Scheduler
    Functions Used by the Scheduler
    Runqueue Balancing in Muhiprocessor Systems
    System Calls Related to Scheduling

    8. Memory Management
    Page Frame Management
    Memory Area Management
    Noncontiguous Memory Area Management

    9. Process Address Space
    The Process's Address Space
    The Memory Descriptor
    Memory Regions
    Page Fault Exception Handler
    Creating and Deleting a Process Address Space
    Managing the Heap

    10. System Calls
    POSIX APls and System Calls
    System Call Handler and Service Routines
    Entering and Exiting a System Call
    Parameter Passing
    Kernel Wrapper Routines

    11. Signals
    The Role of Signals
    Generating a Signal
    Delivering a Signal
    System Calls Related to Signal Handling

    12. The Virtual Filesystem
    The Role of the Virtual Filesystem (VFS)
    VFS Data Structures
    Filesystem Types
    Filesystem Handling
    Pathname Lookup
    Implementations of VFS System Calls
    File Locking

    13. I/0 Architecture and Device Drivers
    I/0 Architecture
    The Device Driver Model
    Device Files
    Device Drivers
    Character Device Drivers

    14. Block Device Drivers
    Block Devices Handling
    The Generic Block Layer
    The I/0 Scheduler
    Block Device Drivers
    Opening a Block Device File

    15. The Page Cache
    The Page Cache
    Storing Blocks in the Page Cache
    Writing Dirty Pages to Disk
    The sync(), fsync(), and fdatasync() System Calls

    16. Accessing Files
    Reading and Writing a File
    Memory Mapping
    Direct I/O Transfers
    Asynchronous I/O

    17. Page Frame Reclaiming
    The Page Frame Reclaiming Algorithm
    Reverse Mapping
    Implementing the PFRA
    Swapping

    18. The Ext2 and Ext3 Filesystems
    General Characteristics of Ext2
    Ext2 Disk Data Structures
    Ext2 Memory Data Structures
    Creating the Ext2 Filesystem
    Ext2 Methods
    Managing Ext2 Disk Space
    The Ext3 Filesystem

    19. Process Communication
    Pipes
    FIFOs
    System V IPC
    POSIX Message Queues

    20. Program Execution
    Executable Files
    Executable Formats
    Execution Domains
    The exec Functions
    A. System Startup
    B. Modules
    Bibliography
    Source Code Index
    Index
查看详情
相关图书 / 更多
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入理解移动互联网
吴功宜 吴英 编著
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入实施“四个育人”,彰显本科人才培养特色——云南大学本科教育改革与创新优秀论文集
主编唐旭光
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入浅出C语言程序设计(第3版·微课版)
李俊·c;强振平;荣剑;张晴晖;赵毅力;钟丽辉
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入浅出C#(视频教学版)
赵云
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入实践Kotlin元编程
霍丙乾 著
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入北方的小路(布克奖震撼杰作。人生在世,行走于地狱屋顶,凝望花朵。余华力荐“了不起的小说”!)
[澳]理查德·弗兰纳根 著;新经典 出品
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入学习习近平关于科技创新的重要论述
科学技术部编写组 著
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入浅出IoT:完整项目通关实战
[英]吉姆·贝内特(Jim Bennett) 著;柴火创客空间 译;[美]珍·福克斯(Jen Fox);[美]珍·卢珀(Jen Looper)
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入浅出SSD:固态存储核心技术、原理与实战 第2版
SSDFans 胡波 石亮 岑彪
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入地心 少儿科普 新华正版
英国尤斯伯恩出版公司
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入理解FFmpeg
刘歧 赵军 杜金房 赵文杰 宋韶颍
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
深入人心:数字产品设计的底层逻辑
林婕
您可能感兴趣 / 更多
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
孩子,把你的手给我1:怎么说孩子才爱听,怎么教孩子才肯学?帮助每一位3-12岁孩子的父母结束与孩子的所有冲突!
[美]海姆·G.吉诺特
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
怎样做成大事
[美]丹·加德纳(Dan Gardner) 著;贾拥民 译;湛庐文化 出品;[丹麦]傅以斌(Bent Flyvbjerg)
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
1200年希腊罗马神话
[美]伊迪丝·汉密尔顿
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
爱情心理学(新编本)
[美]罗伯特·J. 斯腾伯格 (美)凯琳·斯腾伯格 倪爱萍 译
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
黄金圈法则
[美]西蒙·斯涅克 著;磨铁文化 出品
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
汤姆·索亚历险记 彩图注音版 一二三四年级5-6-7-8-9岁小学生课外阅读经典 儿童文学无障碍有声伴读世界名著童话故事
[美]马克 吐温
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
富兰克林自传 名家全译本 改变无数人命运的励志传奇 埃隆马斯克反复推荐 赠富兰克林签名照及精美插图
[美]本杰明·富兰克林 著;李自修 译
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
意大利文艺复兴新艺术史
[美]迈克尔·韦恩·科尔 著;[美]斯蒂芬·J·坎贝尔;邵亦杨
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
汤姆素亚历险记:中小学生课外阅读快乐读书吧 儿童文学无障碍有声伴读世界名著童话故事
[美]马克·吐温
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
老人与海 彩图注音版 一二三四年级5-6-7-8-9岁小学生课外阅读经典 儿童文学无障碍有声伴读世界名著童话故事
[美]海明威
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
养育的觉醒:全面激发孩子自驱力,教你如何心平气和做妈妈
[美]凯文·莱曼 著;唐晓璐 译;斯坦威 出品
深入理解LINUX内核(影印版第3版涵盖2.6版英文版)
国际大奖图画书系列 共11册(小老鼠的恐惧的大书,大灰狼,红豆与菲比,别烦我,下雪了 ,穿靴子的猫 ,先有蛋,绿 ,特别快递,如果你想看鲸鱼 ,一个部落的孩子 ) 麦克米伦世纪
[美]莱恩·史密斯 (英)埃米莉·格雷维特 (美)劳拉·瓦卡罗·等/文 (英)埃米莉·格雷维特 等/图 彭懿 杨玲玲 阿甲 孙慧阳 白薇 译