Enabled signal handlers

git-svn-id: trunk@22752 -
This commit is contained in:
svenbarth 2012-10-18 20:12:41 +00:00
parent a01677e546
commit f7c333cee0

View File

@ -354,10 +354,7 @@ begin
StackLength := CheckInitialStkLen(initialStkLen);
StackBottom := initialstkptr - StackLength;
{ Set up signals handlers (may be needed by init code to test cpu features) }
{$ifndef cpum68k}
InstallSignals;
{$endif cpum68k}
{$if defined(cpui386) or defined(cpuarm)}
fpc_cpucodeinit;
{$endif cpui386}
@ -376,8 +373,6 @@ begin
InitSystemThreads;
initvariantmanager;
{ restore original signal handlers in case this is a library }
{$ifndef cpum68k}
if IsLibrary then
RestoreOldSignalHandlers;
{$endif cpum68k}
end.