From acb656e605d91971ee4014da66be1b7ba6201ac3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 18 Aug 2010 17:51:09 +0200 Subject: Add multi-threading primitives Currently only the pthread-based implementation is present. --- odb/details/posix/tls.hxx | 96 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 odb/details/posix/tls.hxx (limited to 'odb/details/posix/tls.hxx') diff --git a/odb/details/posix/tls.hxx b/odb/details/posix/tls.hxx new file mode 100644 index 0000000..6e11a64 --- /dev/null +++ b/odb/details/posix/tls.hxx @@ -0,0 +1,96 @@ +// file : odb/details/posix/tls.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_DETAILS_POSIX_TLS_HXX +#define ODB_DETAILS_POSIX_TLS_HXX + +#include + +namespace odb +{ + namespace details + { + template + class tls; + + template + class tls + { + public: + tls (); + + T& + get () const; + + private: + tls (const tls&); + tls& operator= (const tls&); + + private: + static void + key_init (); + + static void + destructor (void*); + + private: + static int error_; + static pthread_once_t once_; + static pthread_key_t key_; + }; + + template + class tls + { + public: + tls (); + + T* + get () const; + + void + set (T* p); + + private: + tls (const tls&); + tls& operator= (const tls&); + + private: + static void + key_init (); + + private: + static int error_; + static pthread_once_t once_; + static pthread_key_t key_; + }; + + template + inline T& + tls_get (const tls& s) + { + return s.get (); + } + + template + inline T* + tls_get (const tls& s) + { + return s.get (); + } + + template + inline void + tls_set (tls& s, T* p) + { + return s.set (p); + } + } +} + +#include +#include + +#endif // ODB_DETAILS_POSIX_TLS_HXX -- cgit v1.1