首页 > 代码库 > Linux------Performance and Tuning

Linux------Performance and Tuning

Linux操作系统的基本架构

技术分享

一. Linux process management

  1. 进程管理包括:process scheduling, interrupt handling, signaling, process prioritization, process switching,
    process state, process memory等等。
  2. 什么是进程:进程是运行在处理器上的一个实例,进程使用内核所能处理的所有资源去完成进程需要完成的任务。
  3. Linux上进程的管理是通过一个叫task_struct的结构来进行的,通常也叫做process descriptor进程描述符,进程描述符中包含了所有针对单一进程的详细,下图就是一个进程描述符:
  4. 技术分享

Linux------Performance and Tuning