zoukankan      html  css  js  c++  java
  • Modern Operating System --- Power Management (Hardware Issues)

    The general approach most computer vendors take to battery conservation is to design the CPU,

    memory, and I/O devices to have multiple states: on, sleeping, hiberating, and off. To use the 

    device, it must be on. When the device will not be needed for a short time, it can be put to sleep,

    which reduces energy consumption. When it is not expected to be needed for a longer interval, it

    can be made to hiberate, which reduces energy consumption even more. The trade-off here is that

    getting a device out of hiberating often take more time and energy than getting it out of sleep state.

    Finally, when a device is off, it does nothing and consumes no power. Not all devices have all these

    states, but when they do, it is up to the operating system to manage the state transition at the 

    right moments.

    Power management brings up a number of questions that the operating system must deal with. Many

    of them deal with resource hiberation --- selectively and temporarily turning off devices, or at least

    reducing their power consumption when they are idle. Questions that must be answered include these:

    Which devices can be controlled? Are they off/on, or do they have intermediate states? How much

    power is saved in the low-power state? Is energy expended to restart the device? Must some context

    be saced when going to a low-power state? How long does it take to go back to full power? Of course,

    the answers to these questions vary from device to device, so  the operating system must be able to

    deal with a range of possibilities.

  • 相关阅读:
    mysql修改库、表、字段 字符集,中文排序
    CENTOS6.5 编译安装MySQL5.7.14
    自己的一个小小的目标
    css 浮动和清除浮动
    移动端调试方法
    Fiddler抓包工具总结
    Vue中错误图片的处理
    跨域资源共享 CORS 详解
    十大排序算法JavaScript实现总结
    javascript实现二叉搜索树
  • 原文地址:https://www.cnblogs.com/miaoyong/p/4886806.html
Copyright © 2011-2022 走看看