#include <pthreadthreadlocal.h>
Public Member Functions | |
| PthreadThreadLocal () | |
| ThreadLocal constructor. | |
| ~PthreadThreadLocal () | |
| ThreadLocal destructor. | |
| PthreadThreadLocal & | operator= (T *v) |
| Assignment operator which makes this object look like a pointer. | |
| T & | operator * () |
| Dereferencing operator which makes this object look like a pointer. | |
| T & | operator * () const |
| Constant dereferencing operator which makes this object look like a pointer. | |
This really contains a pthread_key_t.
| PthreadThreadLocal& PthreadThreadLocal< T >::operator= | ( | T * | v | ) | [inline] |
Assignment operator which makes this object look like a pointer.
| v | is the pointer to be stored |
| T& PthreadThreadLocal< T >::operator * | ( | ) | [inline] |
Dereferencing operator which makes this object look like a pointer.
| T& PthreadThreadLocal< T >::operator * | ( | ) | const [inline] |
Constant dereferencing operator which makes this object look like a pointer.
1.5.1