timelimit
Timelimit is a constraint on the maximum duration allowed for a task. In computing, a timelimit can apply to a program, script, or operation, and can refer to wall-clock time (real elapsed time) or to CPU time (processor time consumed). Time limits are used to ensure fairness, enforce performance requirements, and prevent resource starvation.
Enforcement of timelimits is provided by operating systems and runtimes through mechanisms such as watchdog timers,
When a timelimit is exceeded, the running task is typically terminated, possibly with a signal or an
Timelimits are used to prevent long-running tasks from blocking resources, to enforce deadlines in real-time systems,
See also: timeouts, deadlines, timeboxing, watchdog timer, CPU time limit.