]> git.draconx.ca Git - cdecl99.git/blob - src/thread-stdc.h
Release 1.3.
[cdecl99.git] / src / thread-stdc.h
1 /*
2  * Copyright © 2024 Nick Bowler
3  *
4  * Helpers for hosts using standard C threading API.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
18  */
19
20 #include <threads.h>
21
22 static tss_t tls_key;
23 static bool tls_key_valid;
24
25 static void init_once_cb(void);
26
27 static void *tls_get(void)
28 {
29         return tss_get(tls_key);
30 }
31
32 static int tls_set(void *p)
33 {
34         return tss_set(tls_key, p) == thrd_success;
35 }
36
37 static void init_once_with_tls(void)
38 {
39         tls_key_valid = (tss_create(&tls_key, free) == thrd_success);
40         init_once_cb();
41 }
42
43 static int init_once(void)
44 {
45         static once_flag flag;
46
47         call_once(&flag, init_once_with_tls);
48         return 1;
49 }