* ensure always 16 byte aligned memory blocks

git-svn-id: trunk@2511 -
This commit is contained in:
florian 2006-02-10 19:08:43 +00:00
parent 0b1b0047f4
commit a9198b7300

View File

@ -78,12 +78,18 @@ const
type
poschunk = ^toschunk;
{ keep size of this record dividable by 16 }
toschunk = record
size,
used,
chunkindex : ptrint;
next,
prev : poschunk;
{$ifdef CPU64}
pad1 : array[0..0] of pointer;
{$else CPU64}
pad1 : array[0..2] of pointer;
{$endif CPU64}
end;
pmemchunk_fixed = ^tmemchunk_fixed;