mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 08:19:36 +01:00 
			
		
		
		
	- MSDOS heap in tinyheap.inc modified to use usual SysGetMem and similar names. - Use HAS_MEMORYMANAGER (used previously in wince source code, to specify that a memory manager is defined elsewhere than inside heap.inc include file. - Use - Remove TinyHeapMemoryManager Structure variable completely heaptrc.pp: remove unneeded macro code after name changes of tinyheap.inc msdos/system.pp now only defines HAS_MEMORYMANAGER macro win16/system.pp defines HAS_MEMORYMANAGER and FPC_NO_DEFAULT_HEAP as it still uses a different memory manager. __stkbottom variable added for win16 system.pp as it is required by i8086 specific stack check code. git-svn-id: trunk@33983 -
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
{
 | 
						|
    This file is part of the Free Pascal run time library.
 | 
						|
    Copyright (c) 2014 by the Free Pascal development team.
 | 
						|
 | 
						|
    Tiny heap manager for the i8086 near heap, embedded targets, etc.
 | 
						|
 | 
						|
    See the file COPYING.FPC, included in this distribution,
 | 
						|
    for details about the copyright.
 | 
						|
 | 
						|
    This program is distributed in the hope that it will be useful,
 | 
						|
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 | 
						|
 | 
						|
 **********************************************************************}
 | 
						|
 | 
						|
{$ifdef cpui8086}
 | 
						|
  {$if defined(FPC_X86_DATA_FAR) or defined(FPC_X86_DATA_HUGE)}
 | 
						|
    {$define FPC_TINYHEAP_HUGE}
 | 
						|
  {$endif}
 | 
						|
{$endif cpui8086}
 | 
						|
 | 
						|
    var
 | 
						|
      { these vars are TP7-compatible }
 | 
						|
      HeapOrg: Pointer = nil;  { start of heap }
 | 
						|
      HeapEnd: Pointer = nil;  { end of heap }
 | 
						|
      FreeList: Pointer = nil; { pointer to the first free block }
 | 
						|
      HeapPtr: Pointer = nil;  { pointer to the last free block }
 | 
						|
      HeapSize : {$ifdef FPC_TINYHEAP_HUGE}LongInt{$else}PtrUInt{$endif};
 | 
						|
 | 
						|
    function MemAvail: {$ifdef FPC_TINYHEAP_HUGE}LongInt{$else}PtrUInt{$endif};
 | 
						|
    function MaxAvail: {$ifdef FPC_TINYHEAP_HUGE}LongInt{$else}PtrUInt{$endif};
 | 
						|
    procedure Mark(var p: Pointer);
 | 
						|
    procedure Release(var p: Pointer);
 | 
						|
(*
 | 
						|
    Obsolete, renamed without the Tiny
 | 
						|
    to have the same names as in heap.inc
 | 
						|
    function SysTinyGetMem(Size: ptruint): pointer;
 | 
						|
    function SysTinyFreeMem(Addr: Pointer): ptruint;
 | 
						|
    function SysTinyFreeMemSize(Addr: Pointer; Size: Ptruint): ptruint;
 | 
						|
    function SysTinyMemSize(p: pointer): ptruint;
 | 
						|
    function SysTinyGetFPCHeapStatus : TFPCHeapStatus;
 | 
						|
    function SysTinyGetHeapStatus : THeapStatus;
 | 
						|
    function SysTinyTryResizeMem(var p: pointer; size: ptruint) : boolean;
 | 
						|
 | 
						|
    *)
 |