Browse Source

* Some more signal tuning. Supporting SA_SIGINFO would require changing
types in SignalToRunError. I keep the old thing for now. This help pass
a few more tests that need proper support for floating point exceptions.

git-svn-id: trunk@20702 -

olivier 13 years ago
parent
commit
caf8913ad8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/haiku/system.pp

+ 1 - 1
rtl/haiku/system.pp

@@ -360,7 +360,7 @@ begin
   { initialize handler                    }
   act.sa_mask[0] := 0;
   act.sa_handler := SigActionHandler(@SignalToRunError);
-  act.sa_flags := SA_ONSTACK or SA_SIGINFO;
+  act.sa_flags := SA_ONSTACK;
   FpSigAction(signum,@act,@oldact);
 end;