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.

  • 相关阅读:
    Cornerstone-忽略(隐藏)文件
    ios开发xcode8+ 无需开发者账号,app打包ipa
    ssh-ajax登陆action返回字符串
    手动编译包含两个import自写类的java类。
    关闭IO资源
    java聊天室二(客户端)
    java聊天室一(服务器)
    文件IO常用操作
    Hive启动时的棘手问题的处理
    对于java反射的理解
  • 原文地址:https://www.cnblogs.com/miaoyong/p/4886810.html
Copyright © 2011-2022 走看看