summary refs log tree commit diff stats
path: root/lib/system
Commit message (Expand)AuthorAgeFilesLines
* fixes #1391Araq2014-07-221-1/+1
* added stack overflow preventionAraq2014-07-161-11/+18
* JS compilation works againAraq2014-07-161-2/+2
* parseBiggestFloat is now builtinAraq2014-07-163-10/+190
* Merge pull request #1273 from katlogic/develAndreas Rumpf2014-07-153-7/+16
|\
| * More human readable `$`(float)katlogic2014-06-153-7/+16
* | Merge pull request #1281 from Araq/new_spawnAndreas Rumpf2014-06-163-54/+66
|\ \ | |/ |/|
| * Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-061-30/+13
| |\
| | * added 'fence' instructions to the barrierAraq2014-06-061-30/+5
| | * Promises are now refsAraq2014-06-051-0/+8
| * | Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-013-26/+55
| |\|
| | * bugfix: regionized pointers in a generic context; renamed 'Future' to 'Promise'Araq2014-05-251-1/+2
| | * 'parallel' statement almost workingAraq2014-05-221-3/+3
| | * initial non-compiling version of 'parallel'Araq2014-05-122-25/+53
* | | optimized method dispatchersAraq2014-06-121-0/+22
|/ /
* | Merge pull request #1221 from rbehrends/readallbuf-fixAndreas Rumpf2014-05-311-4/+8
|\ \
| * | Fixed readAllBuffer() to avoid adding garbage bytes at end.Reimer Behrends2014-05-261-4/+8
* | | Merge pull request #1208 from jbe/shared_mem_statsAndreas Rumpf2014-05-311-0/+16
|\ \ \ | |/ / |/| |
| * | added getTotalSharedMem et al.Jostein Berre Eliassen2014-05-201-0/+16
| |/
* | Merge pull request #1196 from EXetoC/cpp-target-fixesAndreas Rumpf2014-05-241-2/+2
|\ \
| * | Resolve type mismatches.EXetoC2014-05-131-2/+2
| |/
* | Merge pull request #1169 from Araq/sigpipeVarriount2014-05-212-1/+12
|\ \ | |/ |/|
| * Fixes #1168Simon Hafner2014-05-032-1/+12
* | implemented builtin noncopying sliceAraq2014-05-021-0/+1
|/
* bugfix: MS-GC GC_unrefAraq2014-04-301-1/+2
* bugfix: MS GC acknowledges GC_ref/unref properlyAraq2014-04-301-6/+45
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-252-2/+2
|\
| * building of nimrtl.dll should work againAraq2014-04-221-1/+1
| * Merge pull request #1118 from gradha/pr_show_boot_optionsVarriount2014-04-211-1/+1
| |\
| | * Version switch displays options used during `koch boot`Grzegorz Adam Hankiewicz2014-04-201-1/+1
* | | minor tweaks; updated todo.txtAraq2014-04-251-1/+1
|/ /
* | fixes DLL generationAraq2014-04-213-6/+12
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-211-4/+2
|\ \
| * | Revert 4b09baa0a and 33fcd1123.Dominik Picheta2014-04-201-4/+2
* | | attempt to make some tests greenAraq2014-04-211-9/+9
|/ /
* | spawn has a chance of working on posixAraq2014-04-201-4/+14
* | fixes bootstrappingAraq2014-04-201-0/+1
* | made large parts of the stdlib gcsafeAraq2014-04-203-6/+8
* | actors compile againAraq2014-04-204-20/+44
|/
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-201-1/+1
|\
| * Fixes typo to be able to use debugger.Grzegorz Adam Hankiewicz2014-04-151-1/+1
* | marked markAndSweep GC thread safeAraq2014-04-201-8/+8
* | New concurrency model: next stepsAraq2014-04-197-27/+200
* | first version of 'spawn'Araq2014-04-161-2/+5
|/
* Fixes problems with JS code gen.Dominik Picheta2014-04-111-20/+34
* Merge pull request #902 from reactormonk/float_toStringAndreas Rumpf2014-04-091-2/+4
|\
| * add a trailing zero to $floatSimon Hafner2014-02-111-0/+2
| * use `.f` instead of `.16e` for floatsSimon Hafner2014-02-111-2/+2
* | preparations for easier debuggingAraq2014-04-075-27/+41
* | doc generation for asyncdispatch worksAraq2014-04-061-2/+3
href='#n154'>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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714