What are Linux Local timer interrupts?

前端 未结 4 1026
抹茶落季
抹茶落季 2021-02-08 03:10

All is in the title. Any links to good documentations are welcome.

4条回答
  •  旧时难觅i
    2021-02-08 03:37

    A less technical answer than Michael Burr's:

    Some things need to be done every jiffy, doesn't matter on which CPU.
    Other things need to be done every jiffy on each CPU. For example, checking if we need to switch to another process.

    The local timer interrupt exists for the second type - whenever it's executed, we check them and do what's needed.

提交回复
热议问题