码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2018-03-12 16:56:32      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:图片   png   pipe   save   消费   class   post   操作系统   生产   

  • 调度
  1. context switch: save context(PCB), restore context(PCB). 开销
  2. 如何维护各个进程的状态:PCB + 队列(job队列,ready 队列,I/O设备队列)
  3. who is the next to run? :
    •  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

技术分享图片

  • 进程操作
    1. 创建:父子进程。fork, createProcess
    2. 进程协作:生产者、消费者问题
      • interprocess communication IPC[系统调用] 
      • 共享内存[独自管理]【关键点:停止生产和消费的条件。】
    3. 终止
  • IPC: pipe 管道, FIFO
    • 匿名管道:父子进程,单工 (0 for read, 1 for write)
    • 具名管道:任意进程,单、双工

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

标签:图片   png   pipe   save   消费   class   post   操作系统   生产   

原文地址:https://www.cnblogs.com/niuxu18/p/note_os_3.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!