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

    The operating system plays a key role in energy management. It controls all the devices, so it

    must decide what to shutdown and when to shut it down. If it shuts down a device and that

    device is needed again quickly, there may be an annoying delay while it is restarted. On the

    other hand, if it waits too long to shut down a device, energy is wasted of nothing.

    The trick is to find algorithms and heuristics that let the operating system make good decision

    about what to shut down and when. The trouble is that "good" is highly subjective. One user

    may find it acceptable that after 30 seconds of not using the conputer it takes 2 seconds for it

    to respond to a keystroke. Another user may swear a blue streak under the same conditions. In

    the absence of audio input, the computer can not tell these users apart.

    The Display

    Let us now look at the big spenders of the energy budget to see what can be done about each one.

    The biggest item in everyone's energy budget is the display. To get a bright sharp image, the screen

    must be backlit nad that takes substantial energy. Many operating systems attempt tp save energy

    here by shuting down the display when there has been no activity for some number of minutes. Often

    the user can decide what the shutdown interval is, thus pushing the trade-off between frequent blanking

    of the screen and using the battery up quickly back to the user (who probably really does not want it).

    Turning off the display is a sleep state because it can be regenerated (from the video RAM) almost

    instantaneously when any key is struck or the pointing device is moved.

  • 相关阅读:
    Text Link Ads 注册[赚钱一]
    Linux文件系统中的链接
    C++虚函数和纯虚函数(1)
    Android init reading tips
    Android上GDB的使用
    What is prelink?
    Linux fork哪些被继承,哪些不被继承
    为什么x86 Linux程序起始地址是从0x08048000开始的?
    Android应用开发的插件化 模块化
    C++拷贝构造函数(深拷贝、浅拷贝)
  • 原文地址:https://www.cnblogs.com/miaoyong/p/4886810.html
Copyright © 2011-2022 走看看