操作系统笔记(三)进程管理之管理,操作系统进程管理


  • 调度
    •  CPU调度器(短期100ms): good repsonse time
    • 接纳调度器(长期1+min): the degree of multiprogramming and mix of cpu- and i/o -bound processes
    • 内存调度器(中期):reduce the degree of multiprogramming according to available memory

  • 进程操作
  • IPC: pipe 管道, FIFO
    • 匿名管道:父子进程,单工 (0 for read, 1 for write)
    • 具名管道:任意进程,单、双工

相关内容