summary refs log tree commit diff stats
path: root/lib/system/mmdisp.nim
Commit message (Expand)AuthorAgeFilesLines
...
* set debug switch to false againAraq2015-12-011-1/+1
* next steps for the GCAraq2015-12-011-1/+1
* Remove spurious unsigned operations from system/threads.nim.Reimer Behrends2015-09-081-3/+0
* Properly register threads with the Boehm GC.Reimer Behrends2015-09-081-23/+18
* Properly initialize the Boehm GC on all platforms.Reimer Behrends2015-09-061-1/+1
* proper distinction between --gc:none and --os:standaloneAraq2015-06-291-3/+6
* TMemRegion -> MemRegionStefan Talpalaru2015-06-151-5/+6
* cleanupStefan Talpalaru2015-06-151-5/+0
* Merge branch 'devel' into gogcStefan Talpalaru2015-06-151-14/+17
|\
| * lib/system/g-w - Dropped 'T' from typespdw2015-06-041-14/+17
* | finalizer supportStefan Talpalaru2015-06-151-0/+6
* | the Go GC - initial implementationStefan Talpalaru2015-05-311-1/+193
|/
* Fix Boehm GC on linuxSergey Avseyev2015-05-261-2/+1
* Use more Natural and Positive numbers in proc parametersdef2015-04-061-12/+12
* fixes --gc:none regression; made some tests greenAraq2015-03-101-27/+33
* Some GC renames to get rid of deprecation warningsdef2015-01-061-3/+3
* Fix --gc:none with --cs:partial.Dominik Picheta2014-09-191-1/+1
* Merge branch 'devel' of https://github.com/Araq/Nimrod into bigbreakAraq2014-09-191-10/+18
|\
| * Various fixes to how the Boehm GC's interface.Reimer Behrends2014-09-181-10/+18
* | renamed Byte to byteAraq2014-08-291-1/+1
* | the big renamefest: first stepsAraq2014-08-221-4/+4
|/
* preparations for easier debuggingAraq2014-04-071-0/+1
* compiler warns when you use GC'ed memory and '--gc:none'Araq2014-01-191-48/+48
* case consistency part 4Araq2013-12-271-1/+1
* implemented 'injectStmt'; more debug supportAraq2013-12-161-1/+2
* GC: even more stress testingAraq2013-10-311-0/+1
* first version of the debug GC; doesn't work yetAraq2013-10-011-1/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* preparations for a generational GCAraq2013-02-161-1/+3
* first version of a simple mark&sweep GC; activate with --gc:markAndSweepAraq2013-02-071-0/+3
* revert to old GC; use --gc:v2 to activate the new GCAraq2013-01-311-3/+3
* cleaned up some debugging codeZahary Karadjov2013-01-201-3/+3
* fixes the recently discovered GC memory leaksZahary Karadjov2012-12-201-3/+6
* temporary debugging code for the memory leak investigationZahary Karadjov2012-11-281-0/+1
* implemented support for the AVR CPU and standalone OSAraq2012-03-311-0/+72
* fixes tests for 'system.shallow'Araq2012-02-101-2/+2
* pragma on/off improvements; endb rewrittenAraq2012-01-281-4/+8
* bugfix: boehm GC improvementsAraq2012-01-161-4/+4
* better inferfacing to boehm GCAraq2012-01-151-4/+26
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* bugfixes for .rod files and visual C++Araq2011-12-031-1/+1
* tester checks exitcode; osproc additions; DLL fixes; taint mode fixesAraq2011-11-071-35/+38
* shared untraced heap; bugfix: mem corruptions in message passing codeAraq2011-07-181-19/+14
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-0/+20
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-4/+11
* improvements to get code size down for programs that don't use GCAraq2011-06-261-9/+4
* further progress for multi-threadingAraq2011-05-191-15/+4
* lexer, parser cleanup; boehm gc for mac os xAraq2011-05-171-1/+6
* mmdisp [] instead of ^Araq2011-05-141-6/+6
* gc tweaking to gain a few percent of performanceAraq2011-05-071-1/+1
f='#n607'>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 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893