Code: Select all
Mutex & getRootMutex()
{
static Mutex * gpRootMutex = new Mutex;
return *gpRootMutex;
}
Code: Select all
Mutex gRootMutex;
Mutex & getRootMutex()
{
return gRootMutex;
}
Code: Select all
Mutex & getRootMutex()
{
static Mutex * gpRootMutex = new Mutex;
return *gpRootMutex;
}
Code: Select all
Mutex gRootMutex;
Mutex & getRootMutex()
{
return gRootMutex;
}