2015-04-06 11:38:11 +03:00
|
|
|
|
2016-12-13 11:02:53 +02:00
|
|
|
# A Page (from the traditional memory page) represents a collection of
|
2015-04-08 20:24:50 +03:00
|
|
|
# objects in a physically form. Ie the page holds the memory or data, that
|
|
|
|
# the objects are made up of.
|
|
|
|
|
2016-12-13 11:02:53 +02:00
|
|
|
# Pages have a total size, but more importantly an object size.
|
2015-04-08 20:24:50 +03:00
|
|
|
# All objects of a Page are same sized, and multiples of the smallest
|
|
|
|
# object. The smallest object is usually a cache line, 16 bytes or
|
|
|
|
# an exponent of two larger.
|
|
|
|
|
2015-05-11 18:55:49 +03:00
|
|
|
module Parfait
|
|
|
|
class Page < Object
|
2015-04-08 20:24:50 +03:00
|
|
|
|
2015-05-11 18:55:49 +03:00
|
|
|
end
|
2015-04-06 11:38:11 +03:00
|
|
|
end
|