summary refs log tree commit diff stats
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* Bugfix: no #line dir with 0 generatedAraq2011-06-102-4/+7
* basic generic collections implemented and testedAraq2011-06-073-80/+287
* bugfix: generic instantiation across module boundariesAraq2011-06-062-199/+356
* ugh cannot get rid of rawEcho yet because old compiler relies on itAraq2011-06-051-0/+3
* threads clean up their heapAraq2011-06-045-32/+81
* bugfixes for semantic checking; thread implementation pushed the compilerAraq2011-06-045-64/+79
* first steps to thread local heapsAraq2011-06-0211-616/+927
* bugfix second attempt: osprocAraq2011-05-221-0/+1
* bugfix stderr osprocAraq2011-05-221-7/+4
* Merge branch 'master' of git@github.com:Araq/NimrodAraq2011-05-222-2/+16
|\
| * Added a helpful iterator to redis. Fixed some issues with stderr in osproc. F...dom962011-05-222-2/+16
* | thread progressAraq2011-05-221-5/+6
|/
* pthread_key_t is respected to be an opaque type ...Araq2011-05-202-16/+16
* further progress for multi-threadingAraq2011-05-199-174/+191
* threads with --gc:boehm may work now :-)Araq2011-05-172-51/+46
* still playing with threadsAraq2011-05-172-14/+16
* lexer, parser cleanup; boehm gc for mac os xAraq2011-05-171-1/+6
* thread support: next iterationAraq2011-05-175-120/+190
* store a pointer to thread local storage to make the GC happyAraq2011-05-162-4/+5
* further steps for thread support; bootstrapping should require unzip C source...Araq2011-05-1610-210/+257
* copy replaced by substrAraq2011-05-143-6/+6
* Merge branch 'master' of git@github.com:Araq/NimrodAraq2011-05-144-16/+53
|\
| * Merge branch 'master' of github.com:Araq/Nimroddom962011-05-1421-131/+190
| |\
| * | fixed some redis commands; fixed bindAddr and scgi now doesn't bind to all ad...dom962011-05-144-16/+53
* | | mmdisp [] instead of ^Araq2011-05-141-6/+6
| |/ |/|
* | deprecated system.copy: use system.substr insteadAraq2011-05-1414-74/+85
* | got rid of isLiftedAraq2011-05-141-4/+4
* | loop unrolled for stack markingAraq2011-05-132-1/+14
* | debug build works again; sorryAraq2011-05-094-54/+55
* | threadvar alternativeAraq2011-05-093-9/+23
* | newStringOfCap implemented and used to optimize some procsAraq2011-05-084-15/+35
|/
* bugfix: don't change OSError()'s behaviourAraq2011-05-082-14/+11
* select() for processes; copyDir() for os.dom962011-05-074-20/+129
* gc tweaking to gain a few percent of performanceAraq2011-05-077-104/+153
* little repo cleanupAraq2011-05-02109-115070/+11
* Merge branch 'master' of github.com:Araq/NimrodAraq2011-05-016-38/+223
|\
| * The sockets module supports non-blocking sockets now. Many other fixes in soc...dom962011-04-306-38/+223
* | cleaned up the tests; fixes #30; fixes #26Araq2011-05-015-41/+157
|/
* Merge branch 'master' of github.com:Araq/NimrodAraq2011-04-301-40/+62
|\
| * Some minor fixes and additions to the graphics module.dom962011-04-261-40/+62
* | optional native stack tracesAraq2011-04-291-2/+2
* | const table supportAraq2011-04-292-6/+6
|/
* bugfix: times.epochTimeAraq2011-04-252-4/+3
* Merge branch 'master' of github.com:Araq/Nimroddom962011-04-241-12/+13
|\
| * C source regeneratedAraq2011-04-241-12/+13
* | Lots of fixes in redis.nimdom962011-04-241-175/+217
|/
* Removed the parseBulkStr() proc in redis.nimdom962011-04-231-23/+20
* Consistency fix in redis.nimdom962011-04-231-4/+4
* Added redis client module.dom962011-04-231-0/+834
* c2nim compiles againAraq2011-04-232-3/+11
alt'>
90119066a ^




90119066a ^
2169fd63b ^
90119066a ^

cd292568d ^



90119066a ^
90119066a ^


2169fd63b ^


5b789f2da ^
cd292568d ^
5b789f2da ^

8c799da86 ^
5b789f2da ^
a58a2f382 ^
5b789f2da ^
90119066a ^
cd292568d ^
5b789f2da ^




cd292568d ^
5b789f2da ^






90119066a ^

























73c355176 ^

90119066a ^











6ff8752be ^
4d5c3ebd4 ^


6ff8752be ^
740527813 ^

202972dea ^
740527813 ^
202972dea ^























740527813 ^
202972dea ^










740527813 ^
202972dea ^














740527813 ^
202972dea ^


740527813 ^


6ff8752be ^
0b4d5e45b ^


9e0649526 ^




90119066a ^

















6ff8752be ^
202972dea ^




90119066a ^


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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286