Merge pull request #2171 from djetter99:fix_static_init_order

pull/2180/head
Roman Donchenko 11 years ago committed by OpenCV Buildbot
commit 64244e160b
  1. 15
      modules/core/src/system.cpp

@ -1131,17 +1131,24 @@ public:
} }
} }
}; };
static TLSContainerStorage tlsContainerStorage;
// This is a wrapper function that will ensure 'tlsContainerStorage' is constructed on first use.
// For more information: http://www.parashift.com/c++-faq/static-init-order-on-first-use.html
static TLSContainerStorage& getTLSContainerStorage()
{
static TLSContainerStorage *tlsContainerStorage = new TLSContainerStorage();
return *tlsContainerStorage;
}
TLSDataContainer::TLSDataContainer() TLSDataContainer::TLSDataContainer()
: key_(-1) : key_(-1)
{ {
key_ = tlsContainerStorage.allocateKey(this); key_ = getTLSContainerStorage().allocateKey(this);
} }
TLSDataContainer::~TLSDataContainer() TLSDataContainer::~TLSDataContainer()
{ {
tlsContainerStorage.releaseKey(key_, this); getTLSContainerStorage().releaseKey(key_, this);
key_ = -1; key_ = -1;
} }
@ -1166,7 +1173,7 @@ TLSStorage::~TLSStorage()
void*& data = tlsData_[i]; void*& data = tlsData_[i];
if (data) if (data)
{ {
tlsContainerStorage.destroyData(i, data); getTLSContainerStorage().destroyData(i, data);
data = NULL; data = NULL;
} }
} }

Loading…
Cancel
Save