]> git.saurik.com Git - wxWidgets.git/commitdiff
Save the initial tstate during initialization
authorRobin Dunn <robin@alldunn.com>
Wed, 22 Oct 2003 17:23:36 +0000 (17:23 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 22 Oct 2003 17:23:36 +0000 (17:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/helpers.cpp

index e71d858d5b7ccd75a638fc762a66642c39d45d53..18a46a2f830af07ad3eb66cd122fe8c980a7fe9b 100644 (file)
@@ -362,6 +362,10 @@ void __wxPreStart(PyObject* moduleDict)
     PyEval_InitThreads();
     wxPyTStates = new wxPyThreadStateArray;
     wxPyTMutex = new wxMutex;
+
+    // Save the current (main) thread state in our array
+    PyThreadState* tstate = wxPyBeginAllowThreads();
+    wxPyEndAllowThreads(tstate);
 #endif
 
     // Ensure that the build options in the DLL (or whatever) match this build