INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "User-supplied memory region."
project: "Visual Eiffel Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: kernel
class RTS_MEMORY_AREA_ITEM
inherit

RTS_MEMORY_AREA
rename
make as set_area
undefine
copy
end

RTS_MEMORY_RESIZABLE
rename
count as size
end
creation

make
feature -- Creation

make (a: POINTER; n: INTEGER)
-- Accomodates 'n' bytes of memory at address 'a'
ensure
area_set: area = a
size_set: size = n
end -- class RTS_MEMORY_AREA_ITEM

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES