GM6000 Digital Heater Controller Branch: main
SDX-1330
Tls.h
Go to the documentation of this file.
1#ifndef Cpl_System_Tls_h_
2#define Cpl_System_Tls_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_config.h"
17#include "colony_map.h"
18
19
20/// Defer the definition of the a raw TLS key/index type to the application's 'platform'
21#define Cpl_System_TlsKey_T Cpl_System_TlsKey_T_MAP
22
23
24/** This constant defines the DESIRED minimum of number of TLS instances/index.
25 However, this is only a 'suggestion' to the underlying platform
26 implementation, i.e. Platforms are NOT required to honor the specified
27 minimum
28 */
29#ifndef OPTION_CPL_SYSTEM_TLS_DESIRED_MIN_INDEXES
30#define OPTION_CPL_SYSTEM_TLS_DESIRED_MIN_INDEXES 8
31#endif
32
33
34 ///
35namespace Cpl {
36///
37namespace System {
38
39/** This concrete class defines the interface for Thread Local Storage (TLS).
40 TLS provides a mechanism for each thread to have its own instance of a
41 global variable. A canonical example of TLS is the C error code variable
42 'errno'.
43
44 NOTES:
45
46 o The initial contents (per thread) of a TLS variable will be zero.
47 o If a new TLS variable/index can NOT be created (i.e. exceeded the
48 Platforms supported limits) a Fatal Error is generated.
49 o A TLS variable can ONLY store a void pointer (or a size_t integer).
50 o Each instance of this class represents a single TLS variable that
51 is SAME across ALL threads, i.e. do NOT create a TLS instance per
52 thread, create a TLS instance per global variable.
53 o TLS instances can NOT be created statically, i.e. they must be
54 created AFTER the Cpl::System::Api::initialize() is called.
55 o TLS instances can NOT be copied.
56 */
57class Tls
58{
59public:
60 /// Constructor
61 Tls();
62
63 /// Destructor
65
66public:
67 /** Returns the thread-based stored value.
68 */
69 void* get( void );
70
71 /** This method sets the thread-based stored value.
72 */
73 void set( void* newValue );
74
75
76protected:
77 /// Raw TLS key/handle/index
79
80
81private:
82 /// Prevent access to the copy constructor -->TLS instances can not be copied!
83 Tls( const Tls& m );
84
85 /// Prevent access to the assignment operator -->TLS instances can not be copied!
86 const Tls& operator=( const Tls& m );
87
88};
89
90
91
92}; // end namespaces
93};
94#endif // end header latch
#define Cpl_System_TlsKey_T
Defer the definition of the a raw TLS key/index type to the application's 'platform'.
Definition Tls.h:21
This concrete class defines the interface for Thread Local Storage (TLS).
Definition Tls.h:58
~Tls()
Destructor.
Cpl_System_TlsKey_T m_key
Raw TLS key/handle/index.
Definition Tls.h:78
void set(void *newValue)
This method sets the thread-based stored value.
Tls()
Constructor.
void * get(void)
Returns the thread-based stored value.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20