tmeminfo

Memory information record

Declaration

Source position: go32.pp line 42

Type
tmeminfo = record
  available\_memory : LongInt;
  available\_pages : LongInt;
  available\_lockable\_pages : LongInt;
  linear\_space : LongInt;
  unlocked\_pages : LongInt;
  available\_physical\_pages : LongInt;
  total\_physical\_pages : LongInt;
  free\_linear\_space : LongInt;
  max\_pages\_in\_paging\_file : LongInt;
  reserved0 : LongInt;
  reserved1 : LongInt;
  reserved2 : LongInt;
end

Description

tmeminfo Holds information about the memory allocation, etc.

NOTE: The value of a field is -1 (0ffffffffh) if the value is unknown, it's only guaranteed, that available_memory contains a valid value. The size of the pages can be determined by the get_page_size() function.