Amiga: manually semaphore-protect the heap Pool, because classic Amiga has no MEMF_SEM_PROTECTED

git-svn-id: trunk@30356 -
This commit is contained in:
Károly Balogh 2015-03-29 00:18:19 +00:00
parent 0bccf5f09f
commit bbecfeed9e
2 changed files with 16 additions and 0 deletions

View File

@ -25,7 +25,14 @@ function SysOSAlloc(size: ptruint): pointer;
var values: array[0..2] of dword;
{$ENDIF}
begin
{$IFDEF AMIGA}
{ The mutex locking is only needed for AmigaOS, AROS and MorphOS has MEMF_SEM_PROTECTED }
ObtainSemaphore(ASYS_heapSemaphore);
{$ENDIF}
result:=AllocPooled(ASYS_heapPool,size);
{$IFDEF AMIGA}
ReleaseSemaphore(ASYS_heapSemaphore);
{$ENDIF}
{$IFDEF ASYS_FPC_MEMDEBUG}
values[0]:=dword(result);
values[1]:=dword(size);
@ -41,7 +48,13 @@ procedure SysOSFree(p: pointer; size: ptruint);
var values: array[0..2] of dword;
{$ENDIF}
begin
{$IFDEF AMIGA}
ObtainSemaphore(ASYS_heapSemaphore);
{$ENDIF}
FreePooled(ASYS_heapPool,p,size);
{$IFDEF AMIGA}
ReleaseSemaphore(ASYS_heapSemaphore);
{$ENDIF}
{$IFDEF ASYS_FPC_MEMDEBUG}
values[0]:=dword(p);
values[1]:=dword(size);

View File

@ -79,6 +79,7 @@ var
{$ENDIF}
ASYS_heapPool : Pointer; { pointer for the OS pool for growing the heap }
ASYS_heapSemaphore: Pointer; { 68k OS from 3.x has no MEMF_SEM_PROTECTED for pools, have to do it ourselves }
ASYS_origDir : LongInt; { original directory on startup }
AOS_wbMsg : Pointer; public name '_WBenchMsg'; { the "public" part is amunits compatibility kludge }
_WBenchMsg : Pointer; external name '_WBenchMsg'; { amunits compatibility kludge }
@ -353,6 +354,8 @@ begin
{ Creating the memory pool for growing heap }
ASYS_heapPool:=CreatePool(MEMF_FAST,growheapsize2,growheapsize1);
if ASYS_heapPool=nil then Halt(1);
ASYS_heapSemaphore:=AllocPooled(ASYS_heapPool,sizeof(TSignalSemaphore));
InitSemaphore(ASYS_heapSemaphore);
if AOS_wbMsg=nil then begin
StdInputHandle:=dosInput;