mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 02:10:35 +05:00
PAL10867: noexcepthandler option in GUI not working. Disable signals catching.
This commit is contained in:
parent
933c17cfd8
commit
ffab2d99a0
@ -426,6 +426,10 @@ void SMESH_Gen_i::SetEmbeddedMode( CORBA::Boolean theMode )
|
||||
myIsEmbeddedMode = theMode;
|
||||
|
||||
if ( !myIsEmbeddedMode ) {
|
||||
//PAL10867: disable signals catching with "noexcepthandler" option
|
||||
char* envNoCatchSignals = getenv("NOT_INTERCEPT_SIGNALS");
|
||||
if (!envNoCatchSignals || !atoi(envNoCatchSignals))
|
||||
{
|
||||
bool raiseFPE;
|
||||
#ifdef _DEBUG_
|
||||
raiseFPE = true;
|
||||
@ -438,6 +442,7 @@ void SMESH_Gen_i::SetEmbeddedMode( CORBA::Boolean theMode )
|
||||
OSD::SetSignal( raiseFPE );
|
||||
}
|
||||
// else OSD::SetSignal() is called in GUI
|
||||
}
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user