X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSession%2FSALOME_Session_Server.cxx;h=c8b52cf4f4c4b7204bd83da04392f17d8ec3561e;hb=06535b81ff1cf8ac920dd2212c6b28d168ddcc08;hp=65284c93d644cf0f2b84c1f852b844b010d9e782;hpb=541d3637fed062228c2ae0b2224ea698a3114cc5;p=modules%2Fgui.git diff --git a/src/Session/SALOME_Session_Server.cxx b/src/Session/SALOME_Session_Server.cxx index 65284c93d..c8b52cf4f 100755 --- a/src/Session/SALOME_Session_Server.cxx +++ b/src/Session/SALOME_Session_Server.cxx @@ -68,6 +68,8 @@ #include CORBA_SERVER_HEADER(SALOME_Session) #include CORBA_SERVER_HEADER(SALOMEDS) +#include + #include #include #include @@ -647,18 +649,28 @@ int main( int argc, char **argv ) //PyRun_SimpleString("orb.destroy()"); // Destroy the ORB: - MESSAGE("Explicitely destroying the ORB (hoping to kill omniORB threads ...)"); + sleep(2); + //std::cout << "@@@@@ Explicitely destroying the ORB (hoping to kill omniORB threads ...)\n"; ORB_INIT * init = SINGLETON_::Instance(); if (init) init->explicit_destroy(); + //std::cout << "@@@@@ ORB destroyed\n"; // After ORB destruction - PyGILState_Ensure(); if(Py_IsInitialized()) - Py_Finalize(); + { + PyGILState_Ensure(); + //std::cout << "@@@@@ About to PyFinalize\n"; + Py_Finalize(); + //std::cout << "@@@@@ DONE PyFinalize\n"; + } if ( shutdownAll ) - killOmniNames(); + { + //std::cout << "@@@@@ About to kill omni\n"; + killOmniNames(); + //std::cout << "@@@@@ DONE kill omni\n"; + } MESSAGE( "Salome_Session_Server:endofserver" ); return result;