summary refs log tree commit diff stats
path: root/lib/system/threadlocalstorage.nim
Commit message (Expand)AuthorAgeFilesLines
* ref #20694; quit value gets saturated to ranges (#20753)ringabout2022-11-051-1/+1
* move threads out of system (#20674)ringabout2022-10-291-157/+17
* fixes Thread initializer for ARC/ORC on Macos (#20368)ringabout2022-09-161-1/+1
* Implement threads on Zephyr (#19156)Jaremy Creechley2021-11-231-0/+2
* refactoring: orc can use getThreadId() (#19123)Andreas Rumpf2021-11-111-3/+0
* [std/locks]close #7998(complete condition variables) (#17711)flywind2021-04-191-0/+3
* Fix #17299, fix setAffinity for android (#17574)Clyybber2021-03-301-2/+17
* use single backtick (#17133)flywind2021-02-211-1/+1
* Thread attributes should be destroyed using the pthread_attr_destroy() (#13293)Hiroki Noda2020-01-291-2/+4
* Fix #12135 and #12109 (#12137)Euan2019-11-111-0/+7
* introduce csize_t instead of fixing csize (#12497)Arne Döring2019-10-311-1/+1
* fix #11854 (#11857)Arne Döring2019-07-301-3/+3
* style improvements; fixes #11774Araq2019-07-191-2/+2
* minor style changesAraq2019-07-111-1/+1
* add back what was requiredAraq2019-04-041-0/+6
* refactoring: move threadlocalstorage into its own fileAraq2019-04-041-0/+233
tch.nim?h=devel&id=e65dc36ddd6bbb1a87a607ee8c8491732730fa95'>e65dc36dd ^
22ae0bef6 ^
e65dc36dd ^

22ae0bef6 ^
e65dc36dd ^
22ae0bef6 ^

e65dc36dd ^

22ae0bef6 ^

e65dc36dd ^

1826ff7d8 ^


22ae0bef6 ^
e65dc36dd ^

8fa2c0b53 ^


e65dc36dd ^







b8c04bdb9 ^
e65dc36dd ^
b8c04bdb9 ^
e65dc36dd ^

b8c04bdb9 ^
e65dc36dd ^

b8c04bdb9 ^
22ae0bef6 ^
b8c04bdb9 ^
22ae0bef6 ^
b8c04bdb9 ^

e65dc36dd ^
739e1badb ^
b8c04bdb9 ^














22ae0bef6 ^

b8c04bdb9 ^










22ae0bef6 ^
b8c04bdb9 ^











22ae0bef6 ^

b8c04bdb9 ^










22ae0bef6 ^
b8c04bdb9 ^














22ae0bef6 ^
b8c04bdb9 ^


f0bfc0bd3 ^







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202