<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>git.llucax.com.ar Git - software/dgc/naive.git/atom log</title>
<subtitle>D Garbage Collector Naive Implementation</subtitle>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git" />
<link rel="self" type="text/xml" href="http://git.llucax.com.ar/w" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git</id>
<author><name></name></author>
<icon>/static/git-favicon.png</icon>
<logo>/static/git-logo.png</logo>
<updated>2009-09-06T20:26:03Z</updated>
<generator version='1.7.5.4/1.7.5.4'>gitweb</generator>
<entry>
<title type="html">Compare pointers explicitly against null using is and !is</title>
<updated>2009-09-06T20:26:03Z</updated>
<author>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-09-06T20:26:03Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/0b322656db5f4d5b505fa7841a206b43d1b85414" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/0b322656db5f4d5b505fa7841a206b43d1b85414</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Compare pointers explicitly against null using is and !is
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/346f04b3e1026ded5af3ac95a483b2c3d05a6d60..0b322656db5f4d5b505fa7841a206b43d1b85414:/gc/cell.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/0b322656db5f4d5b505fa7841a206b43d1b85414?f=gc/cell.d">H</a>] gc/cell.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/346f04b3e1026ded5af3ac95a483b2c3d05a6d60..0b322656db5f4d5b505fa7841a206b43d1b85414:/gc/dynarray.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/0b322656db5f4d5b505fa7841a206b43d1b85414?f=gc/dynarray.d">H</a>] gc/dynarray.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/346f04b3e1026ded5af3ac95a483b2c3d05a6d60..0b322656db5f4d5b505fa7841a206b43d1b85414:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/0b322656db5f4d5b505fa7841a206b43d1b85414?f=gc/gc.d">H</a>] gc/gc.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/346f04b3e1026ded5af3ac95a483b2c3d05a6d60..0b322656db5f4d5b505fa7841a206b43d1b85414:/gc/list.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/0b322656db5f4d5b505fa7841a206b43d1b85414?f=gc/list.d">H</a>] gc/list.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Move cell allocation and freeing to Cell struct</title>
<updated>2009-09-06T19:35:17Z</updated>
<author>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-09-06T19:35:17Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/346f04b3e1026ded5af3ac95a483b2c3d05a6d60" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/346f04b3e1026ded5af3ac95a483b2c3d05a6d60</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Move cell allocation and freeing to Cell struct

This ensures proper Cell initialization and group cell allocation and
freeing in one place, making easier to change the implementation.
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/6496d94f157af17ccf0f9cf3dee67c663a23313b..346f04b3e1026ded5af3ac95a483b2c3d05a6d60:/gc/cell.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/346f04b3e1026ded5af3ac95a483b2c3d05a6d60?f=gc/cell.d">H</a>] gc/cell.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/6496d94f157af17ccf0f9cf3dee67c663a23313b..346f04b3e1026ded5af3ac95a483b2c3d05a6d60:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/346f04b3e1026ded5af3ac95a483b2c3d05a6d60?f=gc/gc.d">H</a>] gc/gc.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Make realloc() handle null as a malloc() result</title>
<updated>2009-08-30T19:29:52Z</updated>
<author>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-08-30T19:29:52Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/6496d94f157af17ccf0f9cf3dee67c663a23313b" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/6496d94f157af17ccf0f9cf3dee67c663a23313b</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Make realloc() handle null as a malloc() result
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/6fc677ccc16a18a8106681bb9aeb86feff459fb8..6496d94f157af17ccf0f9cf3dee67c663a23313b:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/6496d94f157af17ccf0f9cf3dee67c663a23313b?f=gc/gc.d">H</a>] gc/gc.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Make calloc() handle null as a malloc() result</title>
<updated>2009-08-30T19:29:00Z</updated>
<author>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-08-30T19:29:00Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/6fc677ccc16a18a8106681bb9aeb86feff459fb8" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/6fc677ccc16a18a8106681bb9aeb86feff459fb8</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Make calloc() handle null as a malloc() result
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/2d8639409b4749afd92266347f20b99da80e14c9..6fc677ccc16a18a8106681bb9aeb86feff459fb8:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/6fc677ccc16a18a8106681bb9aeb86feff459fb8?f=gc/gc.d">H</a>] gc/gc.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Initialize capacity to 0 when allocating a new cell</title>
<updated>2009-05-15T02:18:09Z</updated>
<author>
  <name>Alberto Bertogli</name>
  <email>albertito@blitiri.com.ar</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-05-15T02:18:09Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/2d8639409b4749afd92266347f20b99da80e14c9" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/2d8639409b4749afd92266347f20b99da80e14c9</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Initialize capacity to 0 when allocating a new cell

Otherwise, when later we do cell.capacity == 0 we're using uninitialized
memory and can return the wrong result if we're not lucky enough to get 0s.
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/1510e826d84ca402a00c5cab2d2e2d172b8602d2..2d8639409b4749afd92266347f20b99da80e14c9:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/2d8639409b4749afd92266347f20b99da80e14c9?f=gc/gc.d">H</a>] gc/gc.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">When doing a realloc(), take the size of the type into account</title>
<updated>2009-05-15T02:18:07Z</updated>
<author>
  <name>Alberto Bertogli</name>
  <email>albertito@blitiri.com.ar</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-05-15T02:18:07Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/1510e826d84ca402a00c5cab2d2e2d172b8602d2" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/1510e826d84ca402a00c5cab2d2e2d172b8602d2</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
When doing a realloc(), take the size of the type into account
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/6720d9bcaaedb553e9476ffb064115689a97c2d1..1510e826d84ca402a00c5cab2d2e2d172b8602d2:/gc/dynarray.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/1510e826d84ca402a00c5cab2d2e2d172b8602d2?f=gc/dynarray.d">H</a>] gc/dynarray.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Fix some comments</title>
<updated>2009-05-15T02:18:06Z</updated>
<author>
  <name>Alberto Bertogli</name>
  <email>albertito@blitiri.com.ar</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-05-15T02:18:06Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/6720d9bcaaedb553e9476ffb064115689a97c2d1" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/6720d9bcaaedb553e9476ffb064115689a97c2d1</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Fix some comments

Mostly typos and missing 's', but also some minor style improvements.
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/42206cb5faf1a28d3cafceae5c838d8a58e3afc3..6720d9bcaaedb553e9476ffb064115689a97c2d1:/gc/arch.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/6720d9bcaaedb553e9476ffb064115689a97c2d1?f=gc/arch.d">H</a>] gc/arch.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/42206cb5faf1a28d3cafceae5c838d8a58e3afc3..6720d9bcaaedb553e9476ffb064115689a97c2d1:/gc/cell.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/6720d9bcaaedb553e9476ffb064115689a97c2d1?f=gc/cell.d">H</a>] gc/cell.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/42206cb5faf1a28d3cafceae5c838d8a58e3afc3..6720d9bcaaedb553e9476ffb064115689a97c2d1:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/6720d9bcaaedb553e9476ffb064115689a97c2d1?f=gc/gc.d">H</a>] gc/gc.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Remove invalid TODO comment</title>
<updated>2009-05-01T22:40:51Z</updated>
<author>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-05-01T22:40:51Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/42206cb5faf1a28d3cafceae5c838d8a58e3afc3" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/42206cb5faf1a28d3cafceae5c838d8a58e3afc3</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Remove invalid TODO comment
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/802aa7fc0eeb044538d371e936197752bbb53612..42206cb5faf1a28d3cafceae5c838d8a58e3afc3:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/42206cb5faf1a28d3cafceae5c838d8a58e3afc3?f=gc/gc.d">H</a>] gc/gc.d</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Remove alloc module, move all other modules to gc/ and document</title>
<updated>2009-04-25T23:37:44Z</updated>
<author>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-04-25T23:37:44Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/802aa7fc0eeb044538d371e936197752bbb53612" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/802aa7fc0eeb044538d371e936197752bbb53612</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Remove alloc module, move all other modules to gc/ and document

There are another bugfixes and restructuration (like debug prints
removal). This version should be the initial commit, the previos version
is keeped only because the alloc module can be useful in the future for
other implementations.
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/.gitignore">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=.gitignore">H</a>] .gitignore</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/alloc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=alloc.d">H</a>] alloc.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/arch.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=arch.d">H</a>] arch.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/cell.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=cell.d">H</a>] cell.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/dynarray.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=dynarray.d">H</a>] dynarray.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=gc.d">H</a>] gc.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/gc/arch.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=gc/arch.d">H</a>] gc/arch.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/gc/cell.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=gc/cell.d">H</a>] gc/cell.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/gc/dynarray.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=gc/dynarray.d">H</a>] gc/dynarray.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/gc/gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=gc/gc.d">H</a>] gc/gc.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/gc/iface.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=gc/iface.d">H</a>] gc/iface.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/gc/list.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=gc/list.d">H</a>] gc/list.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/iface.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=iface.d">H</a>] iface.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/ldc.mak">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=ldc.mak">H</a>] ldc.mak</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/list.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=list.d">H</a>] list.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/posix.mak">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=posix.mak">H</a>] posix.mak</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3..802aa7fc0eeb044538d371e936197752bbb53612:/win32.mak">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/802aa7fc0eeb044538d371e936197752bbb53612?f=win32.mak">H</a>] win32.mak</li>
</ul>
</div>
</content>
</entry>
<entry>
<title type="html">Initial import</title>
<updated>2009-04-18T19:53:22Z</updated>
<author>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</author>
<contributor>
  <name>Leandro Lucarella</name>
  <email>llucax@gmail.com</email>
</contributor>
<published>2009-04-18T19:53:22Z</published>
<link rel="alternate" type="text/html" href="http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3" />
<id>http://git.llucax.com.ar/w/software/dgc/naive.git/commitdiff/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3</id>
<content type="xhtml" xml:base="http://git.llucax.com.ar/w">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Initial import

All is pretty functional. The alloc module will probably have to go (we
don't want that kind of complexity here).
</pre><ul>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/alloc.d?fp=alloc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=alloc.d">H</a>] alloc.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/arch.d?fp=arch.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=arch.d">H</a>] arch.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/cell.d?fp=cell.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=cell.d">H</a>] cell.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/dynarray.d?fp=dynarray.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=dynarray.d">H</a>] dynarray.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/gc.d?fp=gc.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=gc.d">H</a>] gc.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/iface.d?fp=iface.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=iface.d">H</a>] iface.d</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/ldc.mak?fp=ldc.mak">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=ldc.mak">H</a>] ldc.mak</li>
<li>[<a title="diff" href="http://git.llucax.com.ar/w/software/dgc/naive.git/blobdiff/0000000000000000000000000000000000000000..9cbaa4a3180163f6966de2ee31bcef84df5bfdb3:/list.d?fp=list.d">D</a><a title="history" href="http://git.llucax.com.ar/w/software/dgc/naive.git/history/9cbaa4a3180163f6966de2ee31bcef84df5bfdb3?f=list.d">H</a>] list.d</li>
</ul>
</div>
</content>
</entry>
</feed>

