FINO
From Wikipedia, the free encyclopedia
- This article is about the scheduling algorithm. For the sherry variety, see fino.
In computer science, FINO is a jocular scheduling algorithm. It is an acronym for "First In Never Out" as opposed to traditional "first in first out" and "last in first out" algorithms.
FINO works by withholding all scheduled tasks permanently. No matter how many tasks are scheduled at any time, no task ever actually takes place. This makes FINO extremely simple to implement, but useless in practice. A stateful FINO queue can be used to implement a memory leak.
A mention of FINO appears in the Official Signetics 25120 Data Sheet
/dev/null is an example of a (stateless) FINO.