]> git.cworth.org Git - apitrace/commitdiff
Remove os::thread_specific_ptr
authorJosé Fonseca <jose.r.fonseca@gmail.com>
Sat, 3 Nov 2012 10:27:22 +0000 (10:27 +0000)
committerJosé Fonseca <jose.r.fonseca@gmail.com>
Sat, 3 Nov 2012 11:04:08 +0000 (11:04 +0000)
No longer needed.

common/os_thread.hpp

index c01d228910e675f35cc1b56e8d7471c0cd2cdc2f..f5f4e48a0f60a3d24131e4828ce9740197d7d1b0 100644 (file)
@@ -24,9 +24,9 @@
  **************************************************************************/
 
 /*
- * Simple OS abstraction.
+ * OS native thread abstraction.
  *
- * Mimics C++11 / boost threads.
+ * Mimics C++11 threads.
  */
 
 #ifndef _OS_THREAD_HPP_
@@ -239,7 +239,6 @@ namespace os {
         wait(unique_lock<mutex> & lock) {
             mutex::native_handle_type & mutex_native_handle = lock.mutex()->native_handle();
 #ifdef _WIN32
-            /* FIXME */
             SleepConditionVariableCS(&_native_handle, &mutex_native_handle, INFINITE);
 #else
             pthread_cond_wait(&_native_handle, &mutex_native_handle);
@@ -251,85 +250,6 @@ namespace os {
     };
 
 
-    /**
-     * Same interface as boost::thread_specific_ptr.
-     */
-    template <typename T>
-    class thread_specific_ptr
-    {
-    private:
-#ifdef _WIN32
-        DWORD dwTlsIndex;
-#else
-        pthread_key_t key;
-
-        static void destructor(void *ptr) {
-            delete static_cast<T *>(ptr);
-        }
-#endif
-
-    public:
-        thread_specific_ptr(void) {
-#ifdef _WIN32
-            dwTlsIndex = TlsAlloc();
-#else
-            pthread_key_create(&key, &destructor);
-#endif
-        }
-
-        ~thread_specific_ptr() {
-#ifdef _WIN32
-            TlsFree(dwTlsIndex);
-#else
-            pthread_key_delete(key);
-#endif
-        }
-
-        T* get(void) const {
-            void *ptr;
-#ifdef _WIN32
-            ptr = TlsGetValue(dwTlsIndex);
-#else
-            ptr = pthread_getspecific(key);
-#endif
-            return static_cast<T*>(ptr);
-        }
-
-        T* operator -> (void) const
-        {
-            return get();
-        }
-
-        T& operator * (void) const
-        {
-            return *get();
-        }
-
-        void reset(T* new_value=0) {
-            T * old_value = get();
-            set(new_value);
-            if (old_value) {
-                delete old_value;
-            }
-        }
-
-        T* release (void) {
-            T * old_value = get();
-            set(0);
-            return old_value;
-        }
-
-private:
-        void set(T* new_value) {
-#ifdef _WIN32
-            TlsSetValue(dwTlsIndex, new_value);
-#else
-            pthread_setspecific(key, new_value);
-#endif
-        }
-    };
-
-
     /**
      * Same interface as std::thread
      */
@@ -356,7 +276,6 @@ private:
         template< class Function, class Arg >
         explicit thread( Function& f, Arg arg ) {
 #ifdef _WIN32
-            /* FIXME */
             DWORD id = 0;
             _native_handle = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)f, (LPVOID)arg, 0, &id);
 #else