microZEUS
The whole stack, hand-drawn.

◄ Wiki / OS

timer tick

A regular clock interrupt that lets the operating system periodically take control and switch tasks.

A hardware timer fires at a fixed interval, interrupting whatever is running and handing control to the kernel's scheduler so it can decide what runs next. This is what makes multitasking feel simultaneous. Because it can strike at any moment, a timer tick can land in the middle of an operation and expose race conditions.

See also

  • syscallThe controlled doorway a program uses to ask the operating system kernel to do something for it.

Referenced by

SVC · syscall