]> matita.cs.unibo.it Git - helm.git/commitdiff
Ctr-C/break button behaviour fixed
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 14 Feb 2023 14:20:06 +0000 (15:20 +0100)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 14 Feb 2023 14:20:06 +0000 (15:20 +0100)
matita/matita/matitaGui.ml

index e05d4c41c5fe7639998f5633ccc7ea903525d183..816dd3a303aa3d1f6c18c2f5e46ca74189048e33 100644 (file)
@@ -599,7 +599,6 @@ class gui () =
        let source_view = script#source_view in
        let thread_main =
         fun () -> 
-          ignore (Thread.sigmask Unix.SIG_UNBLOCK [Sys.sigint]);
           ignore (Thread.sigmask Unix.SIG_UNBLOCK [Sys.sigvtalrm]);
           lock_world ();
           let saved_use_library= !MultiPassDisambiguator.use_library in
@@ -640,13 +639,12 @@ class gui () =
        let force_interrupt n =
          (* This function is called every 1s (see Unix.setitimer call above) *)
          !old_callback n;
+         (* it may be a masked interrupt for the previous thread that arrives
+            late *)
          if Some(Thread.id(Thread.self())) = !interrupt then
           (interrupt := None; raise Sys.Break)
-         else if !interrupt <> None then
-           (* Code executed in the non-worker thread; delay it to let the
-              worker thread catch the signal *)
-           Thread.delay 3.;
        in
+       ignore (Thread.sigmask Unix.SIG_BLOCK [Sys.sigvtalrm]);
        ignore (Unix.setitimer Unix.ITIMER_VIRTUAL {Unix.it_interval = 1.; it_value = 1.});
        let _ =
         match Sys.signal Sys.sigvtalrm (Sys.Signal_handle force_interrupt) with