changeset 6135:1504e68cf080

[project @ 2006-11-02 15:58:54 by jwe]
author jwe
date Thu, 02 Nov 2006 15:58:54 +0000
parents 3010a2ecde0b
children bbbe04bacea2
files src/ChangeLog src/sysdep.cc
diffstat 2 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Nov 02 15:29:28 2006 +0000
+++ b/src/ChangeLog	Thu Nov 02 15:58:54 2006 +0000
@@ -1,3 +1,8 @@
+2006-11-02  Michael Goffioul  <michael.goffioul@swing.be>
+
+	* sysdep.cc (MSVC_init): Also cal w32_sigint_init and
+	w32_set_quiet_shutdown.
+
 2006-11-01  John W. Eaton  <jwe@octave.org>
 
 	* ov.h (octave_value::idx_type_value): New function.
--- a/src/sysdep.cc	Thu Nov 02 15:29:28 2006 +0000
+++ b/src/sysdep.cc	Thu Nov 02 15:58:54 2006 +0000
@@ -180,6 +180,11 @@
 MSVC_init (void)
 {
   w32_set_octave_home ();
+  
+  // Init mutex to protect setjmp/longjmp and get main thread context
+  w32_sigint_init ();
+
+  w32_set_quiet_shutdown ();
 }
 #endif