Cognitive Scaffold

Preparing your thinking workspace

arrow_back_ios_new
MENTAL MODEL · M1850

Polling vs Interrupts

Polling vs Interrupts
BusinessHigh supportManagement
Included
account_tree

Version 1.0.0 · Updated 2026-07-31

CORE DEFINITION

Two ways for the CPU to handle external events: polling is the CPU asking 'anything happening?' every second (wasteful); interrupts are when an external device actively interrupts the CPU with 'I have something!' (efficient).

SCAFFOLDING EFFECT

psychology

Reduce cognitive load

Attention protection. Don't check email every 5 minutes (polling). Turn off notifications, set specific times to process, or only allow extremely urgent events to trigger 'interrupts'. Switch from polling mode to interrupt mode.

anchor

Anchor fast decisions

Compare two I/O handling methods: polling is the CPU actively querying repeatedly, while interrupts are when a device event passively interrupts the CPU. The mechanism is that interrupts respond only when an event occurs, making them generally more efficient and timely.

MINIMUM ACTION

In progress 0/2

Practice this model in one real situation:

Check to track your progress (stored locally)
Learning progress0%
account_treeGenealogyexpand_more
menu_bookReferencesexpand_more

Source support: Explicit

  • link
    baike.baidu.comhttps://baike.baidu.com/view/2116365.htmZH · Explicit
    verified

RELATED MODELS