aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-10 11:26:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-10 11:26:29 +0200
commit81ac8f1ff70adb0b7a1e4625dcf237bcec83b2a4 (patch)
treef046f261ea0e81da62a1f8d723d67d8ead8bd8fc /odb/details/win32
parent33de34de425d2c34b88cdb6547b79b0ee18425ac (diff)
Add support for early destruction of TLS object
Diffstat (limited to 'odb/details/win32')
-rw-r--r--odb/details/win32/tls.cxx4
-rw-r--r--odb/details/win32/tls.hxx10
-rw-r--r--odb/details/win32/tls.txx16
3 files changed, 28 insertions, 2 deletions
diff --git a/odb/details/win32/tls.cxx b/odb/details/win32/tls.cxx
index d6dc2d8..29eb5fb 100644
--- a/odb/details/win32/tls.cxx
+++ b/odb/details/win32/tls.cxx
@@ -18,6 +18,10 @@
#include <odb/details/win32/tls-init.hxx>
#include <odb/details/win32/exceptions.hxx>
+#ifdef _MSC_VER
+# pragma warning (disable:4200) // zero-sized array in struct
+#endif
+
using namespace std;
namespace odb
diff --git a/odb/details/win32/tls.hxx b/odb/details/win32/tls.hxx
index b1dce0f..3354723 100644
--- a/odb/details/win32/tls.hxx
+++ b/odb/details/win32/tls.hxx
@@ -39,6 +39,9 @@ namespace odb
T&
get () const;
+ void
+ free ();
+
private:
tls (const tls&);
tls& operator= (const tls&);
@@ -88,6 +91,13 @@ namespace odb
}
template <typename T>
+ inline void
+ tls_free (tls<T>& t)
+ {
+ t.free ();
+ }
+
+ template <typename T>
inline T*
tls_get (const tls<T*>& t)
{
diff --git a/odb/details/win32/tls.txx b/odb/details/win32/tls.txx
index f20b6a9..025e7cb 100644
--- a/odb/details/win32/tls.txx
+++ b/odb/details/win32/tls.txx
@@ -26,9 +26,8 @@ namespace odb
get () const
{
once_.call (key_init);
- void* v (_get (key_));
- if (v != 0)
+ if (void* v = _get (key_))
return *static_cast<T*> (v);
auto_ptr<T> p (new T);
@@ -41,6 +40,19 @@ namespace odb
template <typename T>
void tls<T>::
+ free ()
+ {
+ once_.call (key_init);
+
+ if (void* v = _get (key_))
+ {
+ _set (key_, 0);
+ delete static_cast<T*> (v);
+ }
+ }
+
+ template <typename T>
+ void tls<T>::
key_init ()
{
key_ = _allocate (destructor);