remove startup sigaction flag hack for x86_64 (fixed properly using SA_RESTORER)

git-svn-id: trunk@3320 -
This commit is contained in:
micha 2006-04-23 18:35:45 +00:00
parent 79d0e21b5c
commit 51ee73772e

View File

@ -134,11 +134,7 @@ begin
FillChar(act, sizeof(SigActionRec),0);
{ initialize handler }
act.sa_handler := SigActionHandler(@SignalToRunError);
act.sa_flags:=SA_SIGINFO
{$ifdef cpux86_64}
or $4000000
{$endif cpux86_64}
;
act.sa_flags:=SA_SIGINFO;
FpSigAction(SIGFPE,@act,nil);
FpSigAction(SIGSEGV,@act,nil);
FpSigAction(SIGBUS,@act,nil);