Lunchbox  1.16.0
Multi-threaded C++ toolbox library for all application developers creating high-performance multi-threaded programs.
lunchbox::TLS Class Reference

Provides thread-local storage API used by PerThread and PerThreadRef. More...

#include <tls.h>

+ Collaboration diagram for lunchbox::TLS:

Public Types

typedef void(* ThreadDestructor_t) (void *)
 

Public Member Functions

 TLS (ThreadDestructor_t dtorFunc)
 Construct a new per-thread storage. More...
 
 ~TLS ()
 Destruct the per-thread storage. More...
 
void set (const void *data)
 Set the data for this thread-local storage. More...
 
void * get ()
 
const void * get () const
 

Detailed Description

Provides thread-local storage API used by PerThread and PerThreadRef.

Definition at line 31 of file tls.h.

Constructor & Destructor Documentation

lunchbox::TLS::TLS ( ThreadDestructor_t  dtorFunc)
explicit

Construct a new per-thread storage.

Parameters
dtorFuncthe destructor function called to destroy thread-local storage, not called if 0.
Version
1.7.2
lunchbox::TLS::~TLS ( )

Destruct the per-thread storage.

Version
1.7.2

Member Function Documentation

const void* lunchbox::TLS::get ( ) const
Returns
the data for this thread-local storage.
Version
1.7.2
void lunchbox::TLS::set ( const void *  data)

Set the data for this thread-local storage.

Version
1.7.2

Referenced by lunchbox::PerThreadRef< T >::operator=(), and lunchbox::PerThread< T, D >::operator=().

+ Here is the caller graph for this function:


The documentation for this class was generated from the following file: