summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorRay Imber <rayimber@gmail.com>2019-09-26 06:45:50 -0700
committerAndreas Rumpf <rumpf_a@web.de>2019-09-26 15:45:50 +0200
commit9dd297f613768bb170e05dcaf361015d9448c582 (patch)
tree9cc8c2e36d6b5dd39b30ed60ea04a327edc0d366 /lib/impure
parent944fcc0e62bb22b9f5da79909dfbda4371de1fc6 (diff)
downloadNim-9dd297f613768bb170e05dcaf361015d9448c582.tar.gz
Locks modules should give a compile error when threads are not enabled. (#12231)
* Locks modules should give a compile error when threads are not enabled.

* fix the compile flags to make the tests pass, or ignore files where necessary.

* Fixed when statement to account for doc builds.
Diffstat (limited to 'lib/impure')
0 files changed, 0 insertions, 0 deletions
a2bb5d482afafdd0e45bd54355c90b5'>328901757 ^
4d4b3b1c0 ^
99078d80d ^
64b048520 ^
99078d80d ^
64b048520 ^
99078d80d ^
64b048520 ^
99078d80d ^
64b048520 ^
99078d80d ^
64b048520 ^
6efa7ecf1 ^
64b048520 ^
99078d80d ^
dfe3f1602 ^
6efa7ecf1 ^
66a885615 ^
6b40114f2 ^
405b86068
69aabdab8 ^



e512358bc ^
6efa7ecf1 ^
e512358bc ^


6efa7ecf1 ^
e512358bc ^
405b86068
ccc0667c2 ^
8d7a45f20 ^

6efa7ecf1 ^




8d7a45f20 ^
ccc0667c2 ^
e0b7f434e ^
336a7c9b3 ^
8d850f7a6 ^
09b9a5441 ^
8d7a45f20 ^
6efa7ecf1 ^






ccc0667c2 ^
7ef268274 ^

6efa7ecf1 ^






ccc0667c2 ^
8d7a45f20 ^
fb8627155 ^
8d7a45f20 ^
32ef1f8f3 ^

6efa7ecf1 ^




ccc0667c2 ^
9428bedcc ^
6efa7ecf1 ^
405b86068

6efa7ecf1 ^
7ef268274 ^
6efa7ecf1 ^
405b86068
69aabdab8 ^


6efa7ecf1 ^
f99c40f61 ^
69aabdab8 ^
f99c40f61 ^


69aabdab8 ^











251bdc1d5 ^
f99c40f61 ^
d2d8f1342 ^
69aabdab8 ^


d2d8f1342 ^











251bdc1d5 ^
d2d8f1342 ^



251bdc1d5 ^
d2d8f1342 ^

69aabdab8 ^




f99c40f61 ^
6efa7ecf1 ^
f99c40f61 ^
6efa7ecf1 ^
f99c40f61 ^
405b86068
ccc0667c2 ^
64b048520 ^
ccc0667c2 ^
64b048520 ^
003601472 ^

c94647aec ^
37f9ace51 ^
003601472 ^
ee1563ef3 ^
c0dbcffca ^
2e20f5648 ^


ee1563ef3 ^
003601472 ^
ee1563ef3 ^


003601472 ^
6efa7ecf1 ^
64b048520 ^
6efa7ecf1 ^
64b048520 ^

6efa7ecf1 ^
003601472 ^
919a889ba ^

003601472 ^
6efa7ecf1 ^
64b048520 ^
405b86068

141b76e36 ^






















4d4b3b1c0 ^
e2f412145 ^
e26370268 ^

919a889ba ^
defaf3b5a ^

c55552522 ^




c94647aec ^
e26370268 ^
99078d80d ^
defaf3b5a ^
e26370268 ^
375b444ec ^
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230