1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0031681: Foundation Classes - Shared Libraries Cannot Be Loaded

Standard_ErrorHandler now accesses global mutex via proxy function
instead of a global variable to avoid initialization order issues.
This commit is contained in:
mpv 2020-07-30 19:30:21 +03:00 committed by bugmaster
parent 4254e74196
commit 0fb210edbf

View File

@ -39,10 +39,16 @@
//==== The top of the Errors Stack =========================================== //==== The top of the Errors Stack ===========================================
static Standard_ErrorHandler* Top = 0; static Standard_ErrorHandler* Top = 0;
// A mutex to protect from concurrent access to Top //! A mutex to protect from concurrent access to Top.
// Note that we should NOT use Sentry while in this class, as Sentry //! Mutex is defined as function to avoid issues caused by
// would register mutex as callback in the current exception handler //! an undefined static variables initialization order across compilation units (@sa #0031681 bug).
static Standard_Mutex theMutex; //! Note that we should NOT use Sentry while in this class, as Sentry
//! would register mutex as callback in the current exception handler.
static Standard_Mutex& GetMutex()
{
static Standard_Mutex theMutex;
return theMutex;
}
static inline Standard_ThreadId GetThreadID() static inline Standard_ThreadId GetThreadID()
{ {
@ -64,10 +70,10 @@ Standard_ErrorHandler::Standard_ErrorHandler () :
myThread = GetThreadID(); myThread = GetThreadID();
memset (&myLabel, 0, sizeof(myLabel)); memset (&myLabel, 0, sizeof(myLabel));
theMutex.Lock(); GetMutex().Lock();
myPrevious = Top; myPrevious = Top;
Top = this; Top = this;
theMutex.Unlock(); GetMutex().Unlock();
} }
@ -94,7 +100,7 @@ void Standard_ErrorHandler::Destroy()
void Standard_ErrorHandler::Unlink() void Standard_ErrorHandler::Unlink()
{ {
// put a lock on the stack // put a lock on the stack
theMutex.Lock(); GetMutex().Lock();
Standard_ErrorHandler* aPrevious = 0; Standard_ErrorHandler* aPrevious = 0;
Standard_ErrorHandler* aCurrent = Top; Standard_ErrorHandler* aCurrent = Top;
@ -106,7 +112,7 @@ void Standard_ErrorHandler::Unlink()
} }
if(aCurrent==0) { if(aCurrent==0) {
theMutex.Unlock(); GetMutex().Unlock();
return; return;
} }
@ -118,7 +124,7 @@ void Standard_ErrorHandler::Unlink()
aPrevious->myPrevious=aCurrent->myPrevious; aPrevious->myPrevious=aCurrent->myPrevious;
} }
myPrevious = 0; myPrevious = 0;
theMutex.Unlock(); GetMutex().Unlock();
// unlink and destroy all registered callbacks // unlink and destroy all registered callbacks
Standard_Address aPtr = aCurrent->myCallbackPtr; Standard_Address aPtr = aCurrent->myCallbackPtr;
@ -217,7 +223,7 @@ Standard_ErrorHandler* Standard_ErrorHandler::FindHandler(const Standard_Handler
const Standard_Boolean theUnlink) const Standard_Boolean theUnlink)
{ {
// lock the stack // lock the stack
theMutex.Lock(); GetMutex().Lock();
// Find the current ErrorHandler Accordin tread // Find the current ErrorHandler Accordin tread
Standard_ErrorHandler* aPrevious = 0; Standard_ErrorHandler* aPrevious = 0;
@ -262,7 +268,7 @@ Standard_ErrorHandler* Standard_ErrorHandler::FindHandler(const Standard_Handler
aStop = Standard_True; aStop = Standard_True;
} }
} }
theMutex.Unlock(); GetMutex().Unlock();
return anActive; return anActive;
} }