GRPC Core  5.0.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tls_gcc.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2015 gRPC authors.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
19 #ifndef GRPC_SUPPORT_TLS_GCC_H
20 #define GRPC_SUPPORT_TLS_GCC_H
21 
22 #include <stdbool.h>
23 
24 #include <grpc/support/log.h>
25 
29 #ifndef NDEBUG
30 
32  intptr_t value;
33  bool* inited;
34 };
35 
36 #define GPR_TLS_DECL(name) \
37  static bool name##_inited = false; \
38  static __thread struct gpr_gcc_thread_local name = {0, &(name##_inited)}
39 
40 #define gpr_tls_init(tls) \
41  do { \
42  GPR_ASSERT(*((tls)->inited) == false); \
43  *((tls)->inited) = true; \
44  } while (0)
45 
47 #define gpr_tls_destroy(tls) \
48  do { \
49  GPR_ASSERT(*((tls)->inited)); \
50  *((tls)->inited) = false; \
51  } while (0)
52 
53 #define gpr_tls_set(tls, new_value) \
54  do { \
55  GPR_ASSERT(*((tls)->inited)); \
56  (tls)->value = (new_value); \
57  } while (0)
58 
59 #define gpr_tls_get(tls) \
60  ({ \
61  GPR_ASSERT(*((tls)->inited)); \
62  (tls)->value; \
63  })
64 
65 #else /* NDEBUG */
66 
67 struct gpr_gcc_thread_local {
68  intptr_t value;
69 };
70 
71 #define GPR_TLS_DECL(name) \
72  static __thread struct gpr_gcc_thread_local name = {0}
73 
74 #define gpr_tls_init(tls) \
75  do { \
76  } while (0)
77 #define gpr_tls_destroy(tls) \
78  do { \
79  } while (0)
80 #define gpr_tls_set(tls, new_value) (((tls)->value) = (new_value))
81 #define gpr_tls_get(tls) ((tls)->value)
82 
83 #endif /* NDEBUG */
84 
85 #endif /* GRPC_SUPPORT_TLS_GCC_H */
bool * inited
Definition: tls_gcc.h:33
Thread local storage based on gcc compiler primitives.
Definition: tls_gcc.h:31
intptr_t value
Definition: tls_gcc.h:32