#pragma once namespace sprawl { namespace threading { template<typename T> class ThreadLocal; } } #ifdef _WIN32 # include <Windows.h> #else # include <pthread.h> #endif template<typename T> class sprawl::threading::ThreadLocal { public: ThreadLocal(); ThreadLocal(T const& value); ~ThreadLocal(); void operator=(T const& value); T& operator*(); T const& operator*() const; T* operator->(); T const* operator->() const; operator bool() const; private: T* get(); T const* get() const; void set(T const& value); #ifdef _WIN32 typedef DWORD KeyType; #else typedef pthread_key_t KeyType; #endif KeyType m_key; }; template<typename T> class sprawl::threading::ThreadLocal<T*> { public: ThreadLocal(); ThreadLocal(T const* value); ~ThreadLocal(); void operator=(T const* value); T* operator*(); T const* operator*() const; T* operator->(); T const* operator->() const; operator bool() const; private: T* get(); T const* get() const; void set(T const* value); #ifdef _WIN32 typedef DWORD KeyType; #else typedef pthread_key_t KeyType; #endif KeyType m_key; }; template<typename T> void sprawl::threading::ThreadLocal<T>::operator=(T const& value) { set(value); } template<typename T> T& sprawl::threading::ThreadLocal<T>::operator*() { return *get(); } template<typename T> T const& sprawl::threading::ThreadLocal<T>::operator*() const { return *get(); } template<typename T> T* sprawl::threading::ThreadLocal<T>::operator->() { return get(); } template<typename T> T const* sprawl::threading::ThreadLocal<T>::operator->() const { return get(); } template<typename T> sprawl::threading::ThreadLocal<T>::operator bool() const { return get() != nullptr; } template<typename T> void sprawl::threading::ThreadLocal<T*>::operator=(T const* value) { set(value); } template<typename T> T* sprawl::threading::ThreadLocal<T*>::operator*() { return get(); } template<typename T> T const* sprawl::threading::ThreadLocal<T*>::operator*() const { return get(); } template<typename T> T* sprawl::threading::ThreadLocal<T*>::operator->() { return get(); } template<typename T> T const* sprawl::threading::ThreadLocal<T*>::operator->() const { return get(); } template<typename T> sprawl::threading::ThreadLocal<T*>::operator bool() const { return get() != nullptr; } #ifdef _WIN32 # include "threadlocal_windows.inl" #else # include "threadlocal_linux.inl" #endif
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 23398 | ququlala | "Forking branch Mainline of shadauxcat-libsprawl to ququlala-libsprawl." | ||
//guest/ShadauxCat/Sprawl/Mainline/threading/threadlocal.hpp | |||||
#1 | 13650 | ShadauxCat |
- Windows implementations of thread and time libraries - Added coroutines - Added some more unit tests, fixed some unit tests in windows environments - Fixed an issue where multi threading was not properly detected on Linux - Fixed the makefiles to build with threading by default on linux - Changed the pool allocator to use thread-local pools instead of locking mutexes - Fixed output of sprawl::string in the StringBuilder library to take length into account - Added string builder options for StringLiteral - Added thread local implementation #review |