Skip to content

Commit 3379e9f

Browse files
committedOct 27, 2023
Use C standard thread_local
Signed-off-by: Cristian Le <[email protected]>
1 parent 0a6de8c commit 3379e9f

File tree

3 files changed

+25
-15
lines changed

3 files changed

+25
-15
lines changed
 

‎include/gk_externs.h

+16-6
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,25 @@
1010
#ifndef _GK_EXTERNS_H_
1111
#define _GK_EXTERNS_H_
1212

13+
// Windows does not support _Thread_local. Use appropriate aliases
14+
// Reference: https://stackoverflow.com/a/18298965
15+
#ifndef thread_local
16+
#if __STDC_VERSION__ >= 201112 && !defined __STDC_NO_THREADS__
17+
#define thread_local _Thread_local
18+
#elif defined _MSC_VER
19+
#define thread_local __declspec(thread)
20+
#elif defined __GNUC__
21+
#define thread_local __thread
22+
#else
23+
#error "Cannot define thread_local"
24+
#endif
25+
#endif
1326

14-
/*************************************************************************
15-
* Extern variable definition. Hopefully, the __thread makes them thread-safe.
16-
**************************************************************************/
1727
#ifndef _GK_ERROR_C_
1828
/* declared in error.c */
19-
extern __thread int gk_cur_jbufs;
20-
extern __thread jmp_buf gk_jbufs[];
21-
extern __thread jmp_buf gk_jbuf;
29+
extern thread_local int gk_cur_jbufs;
30+
extern thread_local jmp_buf gk_jbufs[];
31+
extern thread_local jmp_buf gk_jbuf;
2232

2333
#endif
2434

‎src/error.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ This file contains functions dealing with error reporting and termination
1919
/* These are the jmp_buf for the graceful exit in case of severe errors.
2020
Multiple buffers are defined to allow for recursive invokation. */
2121
#define MAX_JBUFS 128
22-
__thread int gk_cur_jbufs=-1;
23-
__thread jmp_buf gk_jbufs[MAX_JBUFS];
24-
__thread jmp_buf gk_jbuf;
22+
thread_local int gk_cur_jbufs=-1;
23+
thread_local jmp_buf gk_jbufs[MAX_JBUFS];
24+
thread_local jmp_buf gk_jbuf;
2525

2626
typedef void (*gksighandler_t)(int);
2727

2828
/* These are the holders of the old singal handlers for the trapped signals */
29-
static __thread gksighandler_t old_SIGMEM_handler; /* Custom signal */
30-
static __thread gksighandler_t old_SIGERR_handler; /* Custom signal */
31-
static __thread gksighandler_t old_SIGMEM_handlers[MAX_JBUFS]; /* Custom signal */
32-
static __thread gksighandler_t old_SIGERR_handlers[MAX_JBUFS]; /* Custom signal */
29+
static thread_local gksighandler_t old_SIGMEM_handler; /* Custom signal */
30+
static thread_local gksighandler_t old_SIGERR_handler; /* Custom signal */
31+
static thread_local gksighandler_t old_SIGMEM_handlers[MAX_JBUFS]; /* Custom signal */
32+
static thread_local gksighandler_t old_SIGERR_handlers[MAX_JBUFS]; /* Custom signal */
3333

3434
/* The following is used to control if the gk_errexit() will actually abort or not.
3535
There is always a single copy of this variable */
@@ -178,7 +178,7 @@ char *gk_strerror(int errnum)
178178
return strerror(errnum);
179179
#else
180180
#ifndef SUNOS
181-
static __thread char buf[1024];
181+
static thread_local char buf[1024];
182182

183183
strerror_r(errnum, buf, 1024);
184184

‎src/memory.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ can be used to define other memory allocation routines.
1616
#include <GKlib.h>
1717

1818
/* This is for the global mcore that tracks all heap allocations */
19-
static __thread gk_mcore_t *gkmcore = NULL;
19+
static thread_local gk_mcore_t *gkmcore = NULL;
2020

2121

2222
/*************************************************************************/

0 commit comments

Comments
 (0)