busy-wait

busy-wait

(programming)To wait for an event by spinning through atight loop or timed-delay loop that polls for the event oneach pass, as opposed to setting up an interrupt handler andcontinuing execution on another part of the task. This is awasteful technique, best avoided on time-sharing systemswhere a busy-waiting program may hog the processor.