Explorar o código

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

git-svn-id: trunk@3320 -
micha %!s(int64=19) %!d(string=hai) anos
pai
achega
51ee73772e
Modificáronse 1 ficheiros con 1 adicións e 5 borrados
  1. 1 5
      rtl/linux/system.pp

+ 1 - 5
rtl/linux/system.pp

@@ -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);