mirror of https://github.com/tinygo-org/tinygo.git
Browse Source
dumb -> leaking: make it more clear what this "GC" does: leak everything. marksweep -> conservative: "marksweep" is too generic, use "conservative" to differentiate between future garbage collectors: precise marksweep / mark-compact / refcounting.pull/350/head
Ayke van Laethem
6 years ago
5 changed files with 5 additions and 5 deletions
@ -1,4 +1,4 @@ |
|||
// +build gc.marksweep
|
|||
// +build gc.conservative
|
|||
|
|||
package runtime |
|||
|
@ -1,4 +1,4 @@ |
|||
// +build gc.dumb
|
|||
// +build gc.leaking
|
|||
|
|||
package runtime |
|||
|
Loading…
Reference in new issue