summary refs log tree commit diff stats
path: root/lib/system/channels.nim
Commit message (Expand)AuthorAgeFilesLines
* refactoring: move threadlocalstorage into its own fileAraq2019-04-041-1/+1
* improved documentation for several modules (#10752)Miran2019-03-011-14/+26
* code cleanup: there is no tyOptRefAndreas Rumpf2019-02-221-1/+1
* Add note on channel usage with spawn (#10627) [ci skip]Federico Ceratto2019-02-131-3/+8
* Update channels.nim (#8583)Grant2018-08-091-1/+1
* fixes seq copying in channels for --gc:regionsAraq2018-06-071-1/+1
* fixes channels for --gc:regionsAndreas Rumpf2018-05-251-2/+0
* first steps of making 'opt' a first class type for NimAndreas Rumpf2017-09-251-1/+1
* Channels can now block depending on maxItems (#6153)Yuriy Glukhov2017-07-311-12/+31
* Remove expr/stmt (#5857)Arne Döring2017-07-251-2/+2
* udpate channels.nim documentationAraq2017-03-081-1/+1
* Add note about passing channels between threads.Federico Ceratto2017-02-271-0/+2
* Typo in docYuriy Glukhov2016-09-241-1/+1
* fixes #4746Andreas Rumpf2016-09-241-2/+4
* fixes #4776Andreas Rumpf2016-09-241-17/+31
* fixes #4689Andreas Rumpf2016-09-011-7/+5
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-261/+261
* lib/system/a-e - Dropped 'T' from typespdw2015-06-041-18/+20
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* fixes #1816Araq2015-01-021-3/+4
* introduced 'benign' pragmaAraq2014-10-251-9/+9
* Merge branch 'devel' into bigbreakAraq2014-10-201-9/+10
|\
| * 2nd attempt to fix tryRecvAraq2014-10-201-1/+1
| * fixes tryRecvAraq2014-10-201-3/+4
* | make tests greenAraq2014-08-311-8/+8
* | Winlean and threads case sensitivity fixes.Dominik Picheta2014-08-301-23/+23
* | the big renamefest: first stepsAraq2014-08-221-1/+1
|/
* distinguish between 'defined' and 'declared'Araq2014-08-111-1/+1
* made large parts of the stdlib gcsafeAraq2014-04-201-1/+1
* actors compile againAraq2014-04-201-6/+17
* case consistency improvementsAraq2014-01-111-13/+13
* better error message for implicitly available modulesAraq2013-12-011-0/+3
* fixes #575Araq2013-09-101-1/+3
* fixes a long standing channels bugAraq2013-08-091-1/+1
* --os:standalone works againAraq2013-06-301-2/+2
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* made more tests green; fixes #201Araq2012-09-121-2/+2
* fixes tests for 'system.shallow'Araq2012-02-101-1/+1
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* fixes #71; sorry about the polling implementationAraq2011-12-051-1/+4
* 'assert' is now implemented without compiler magicAraq2011-12-041-3/+3
* threads compile again; attempt to fix serious code gen issue (except + return)Araq2011-12-031-9/+9
* more fixes to get rid of tyPureObjectAraq2011-09-241-1/+1
* new actors implementation for nimrod; compiler's generics still not up for th...Araq2011-08-291-102/+49
* attempt to fix tester.nim file handle leakAraq2011-08-291-0/+297
le.py?id=b4b0eb249fbc2fa76e36eca898123509dd20d818'>b4b0eb24 ^
d88232a3 ^



b4b0eb24 ^

d88232a3 ^








a923ead7 ^




d88232a3 ^
1159f9ec ^


c1033553 ^


d88232a3 ^








c1033553 ^
2061a46e ^
c1033553 ^
b19e53f9 ^






c1033553 ^

2061a46e ^
c1033553 ^

d88232a3 ^





1159f9ec ^







d88232a3 ^


d621586e ^
d88232a3 ^

d621586e ^




d88232a3 ^



d621586e ^
d88232a3 ^

























49ae0dd1 ^
d88232a3 ^


1159f9ec ^
d88232a3 ^
49ae0dd1 ^





d88232a3 ^

1159f9ec ^

49ae0dd1 ^
d88232a3 ^




d88232a3 ^












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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251