9 lines
281 B
PHP
9 lines
281 B
PHP
;; File: svm.inc
|
|
;;
|
|
;; Simple Virtual Memory Manager mostly inspired by <UVM at https://www.usenix.org/legacy/event/usenix99/full_papers/cranor/cranor.pdf>
|
|
|
|
include 'svm/amap.inc'
|
|
include 'svm/pager.inc'
|
|
include 'svm/object.inc'
|
|
include 'svm/space.inc'
|
|
include 'svm/kernel.inc'
|