rubyx/lib/parfait/page.rb

16 lines
471 B
Ruby
Raw Normal View History

2015-04-06 10:38:11 +02:00
2016-12-13 10:02:53 +01:00
# A Page (from the traditional memory page) represents a collection of
# objects in a physically form. Ie the page holds the memory or data, that
# the objects are made up of.
2016-12-13 10:02:53 +01:00
# Pages have a total size, but more importantly an object size.
# 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.
module Parfait
class Page < Object
attr :type
end
2015-04-06 10:38:11 +02:00
end