* Call InitHeap before InitSystemThreads in TLS callback (necessary because InitSystemThreads calls RelocateHeap), and skip both of them in initialization section of system.pp if they have been called from TLS callback. This restores correct initialization sequence which was broken by r19779, resulting in lots of debug messages about corrupted heap when running tests/test/theapthread.pp

git-svn-id: trunk@19836 -
This commit is contained in:
sergei 2011-12-13 07:40:02 +00:00
parent 470adb22e1
commit bcbd25568e
4 changed files with 18 additions and 10 deletions

View File

@ -1510,7 +1510,7 @@ begin
end;
{$endif}
procedure InitHeap;
procedure InitHeap; public name '_FPC_InitHeap';
var
loc_freelists: pfreelists;
begin

View File

@ -47,6 +47,7 @@ function TlsGetValue(dwTlsIndex : DWord) : pointer; stdcall;
procedure InitSystemThreads; external name '_FPC_InitSystemThreads';
procedure SysAllocateThreadVars; external name '_FPC_SysAllocateThreadVars';
procedure InitHeap; external name '_FPC_InitHeap';
{$endif FPC_INSSIDE_SYSINIT}
procedure Exec_Tls_callback(Handle : pointer; reason : Dword; Reserved : pointer);
@ -68,7 +69,10 @@ procedure Exec_Tls_callback(Handle : pointer; reason : Dword; Reserved : pointer
Exec_Tls_Callback is now part of sysinit unit for win32
and the EntryInformation is a constant which sholud prevent troubles }
EXEC_PROCESS_ATTACH:
InitSystemThreads;
begin
InitHeap;
InitSystemThreads;
end;
EXEC_THREAD_ATTACH :
begin

View File

@ -686,8 +686,12 @@ begin
StackBottom := StackTop - StackLength;
cmdshow:=startupinfo.wshowwindow;
{ Setup heap }
InitHeap;
{ Setup heap and threading, these may be already initialized from TLS callback }
if not Assigned(CurrentTM.BeginThread) then
begin
InitHeap;
InitSystemThreads;
end;
SysInitExceptions;
{ setup fastmove stuff }
fpc_cpucodeinit;
@ -700,8 +704,6 @@ begin
{ Reset IO Error }
InOutRes:=0;
ProcessID := GetCurrentProcessID;
{ threading }
InitSystemThreads;
{ Reset internal error variable }
errno:=0;
initvariantmanager;

View File

@ -584,8 +584,12 @@ begin
SysInstance:=getmodulehandle(nil);
MainInstance:=SysInstance;
cmdshow:=startupinfo.wshowwindow;
{ Setup heap }
InitHeap;
{ Setup heap and threading, these may be already initialized from TLS callback }
if not Assigned(CurrentTM.BeginThread) then
begin
InitHeap;
InitSystemThreads;
end;
SysInitExceptions;
{ setup fastmove stuff }
fpc_cpucodeinit;
@ -598,8 +602,6 @@ begin
{ Reset IO Error }
InOutRes:=0;
ProcessID := GetCurrentProcessID;
{ threading }
InitSystemThreads;
{ Reset internal error variable }
errno:=0;
initvariantmanager;