summary refs log tree commit diff stats
path: root/lib/system.nim
Commit message (Expand)AuthorAgeFilesLines
* bugfixes for .rod files and visual C++Araq2011-12-031-3/+4
* old 'readline' and 'endOfFile' not deprecated anymore; too convenient for 1 l...Araq2011-11-291-7/+2
* further steps to get rid of deprecated endOfFile and readLineAraq2011-11-291-0/+2
* deprecated endOfFile and readLineAraq2011-11-251-11/+20
* bugfix: fixed memory leaks in osproc moduleAraq2011-11-181-2/+2
* tester uses same layout as nimbuildAraq2011-11-121-1/+3
* better streams implemenation; fixes #63Araq2011-11-121-6/+6
* fixing bootstrapping when stack frames are enabledZahary Karadjov2011-11-101-28/+28
* Added system.program_results for controlling the exit code of the program und...Zahary Karadjov2011-11-101-0/+33
* splicing tested and documentedAraq2011-10-281-21/+22
* compilation cache: methods have a chance to workAraq2011-10-231-10/+14
* thread local vs. global system.raiseHookAraq2011-10-231-2/+11
* libuv working on windows tooZahary Karadjov2011-10-121-4/+0
* Added wrappers for joyent's libuv and http_parser librarierZahary Karadjov2011-10-121-0/+4
* Cleaned up the circular dependecies and remaining issuesZahary Karadjov2011-10-071-24/+22
* Basic unit testing facilities (suites, fixtures, cases)Zahary Karadjov2011-10-071-0/+21
* renamed optional to discardableAraq2011-09-241-2/+2
* Merge branch 'master' of git@github.com:Araq/NimrodAraq2011-09-241-0/+3
|\
| * Fixed string concatenation and other bugs in the JS backend. Fixed a small bu...dom962011-09-231-0/+3
* | beginning of a taint mode; type system enhancementsAraq2011-09-241-11/+19
|/
* fixed some newly introduced bugsAraq2011-09-211-2/+1
* Moved the parseAST magics to evals.nimZahary Karadjov2011-09-201-2/+7
* new actors implementation for nimrod; compiler's generics still not up for th...Araq2011-08-291-1/+1
* more occurences of 'pure' proc pragma fixedAraq2011-08-201-2/+2
* added system.slurp for easy embedding of resourcesAraq2011-08-101-0/+6
* modifyable results for generics; teventemitter worksAraq2011-08-091-0/+2
* json code generation works againAraq2011-08-071-4/+5
* preparation for new 'is' operator; breaks bootstrapping again, sorry (use gen...Araq2011-07-311-0/+3
* shared untraced heap; bugfix: mem corruptions in message passing codeAraq2011-07-181-0/+33
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-3/+4
* preparations for 0.8.12Araq2011-07-101-1/+1
* basic message passing workingAraq2011-07-091-2/+5
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-7/+14
* improvements to get code size down for programs that don't use GCAraq2011-06-261-20/+39
* code gen bugfixes; marshal.nim implementedAraq2011-06-261-2/+1
* zipfiles compiles again; added system.shallowCopyAraq2011-06-201-2/+9
* readFile raises EIO instead of returning nil; added system.writeFileAraq2011-06-161-3/+8
* compiler can emulate thread local variablesAraq2011-06-151-4/+5
* fixed system.nim to use the proper getTypeInfo magicAraq2011-06-101-1/+5
* Added typeinfo moduledom962011-06-091-0/+1
* threads clean up their heapAraq2011-06-041-5/+14
* first steps to thread local heapsAraq2011-06-021-7/+23
* further progress for multi-threadingAraq2011-05-191-1/+2
* thread support: next iterationAraq2011-05-171-3/+3
* further steps for thread support; bootstrapping should require unzip C source...Araq2011-05-161-36/+40
* deprecated system.copy: use system.substr insteadAraq2011-05-141-2/+13
* got rid of isLiftedAraq2011-05-141-4/+4
* debug build works again; sorryAraq2011-05-091-9/+11
* threadvar alternativeAraq2011-05-091-7/+9
* newStringOfCap implemented and used to optimize some procsAraq2011-05-081-1/+7
n571'>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 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738