UNPKG

sams-algorithm-fifo

Version:

A memory scheduler that uses a fifo algorithm.

31 lines (19 loc) 674 B
# F.I.F.O Algorithm Fifo memory scheduler Algorithm All documentation here [Docs](https://github.com/samsteam/algorithm-fifo/wiki) ## How to use ### To clone this module: git clone --recursive https://github.com/samsteam/algorithm-fifo ``` var FIFO = require('sams-algorithm-fifo'); FIFO.ProcessRequirements(rawRequirements, framesAmmount, function(requerimentsResult, totalPageFault){ // do stuff... }); ``` ## Demo Execute `node test.js`. ## How contribute? ### To push your changes: git push --recurse-submodules=on-demand ### If having trouble with pushing your changes, try this first: git submodule update --remote --merge