summary refs log tree commit diff stats
path: root/lib/system/mmdisp.nim
Commit message (Expand)AuthorAgeFilesLines
* Add define value `nimBurnFree` which allow deallocation procedures to fill me...cheatfate2016-09-201-1/+1
* added system.newSeqOfCap for improved efficiencyAndreas Rumpf2016-07-151-0/+14
* fix types of ansi_c/sysio to more closely match C ABIJacek Sieka2016-06-051-12/+12
* Merge remote-tracking branch 'origin/devel' into malloc-store-sizeJacek Sieka2016-04-261-4/+8
|\
| * simple stuff works with --gc:stackAndreas Rumpf2016-04-181-4/+5
| * beginnings of --gc:stackAndreas Rumpf2016-03-281-0/+3
* | store block size in when using malloc and nogcJacek Sieka2016-03-251-5/+20
|/
* newObj can clear memory, even when using malloc and nogcJacek Sieka2016-03-071-1/+1
* further progress on --gc:v2Andreas Rumpf2016-02-171-1/+1
* some progress on GC v2Andreas Rumpf2016-02-031-2/+2
* 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
y?id=9b05f8d7279266c1b1ed2224d9a33f67935f2586'>9b05f8d7 ^
6f695ffe ^

9b05f8d7 ^







11c246d5 ^

d1de64a8 ^
9b05f8d7 ^

13812664 ^
9b05f8d7 ^


13812664 ^



6f695ffe ^
13812664 ^

6f695ffe ^

13812664 ^
6f695ffe ^

7a0f5d2f ^
9b05f8d7 ^

9b05f8d7 ^


d1de64a8 ^



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