diff ctobin @ 139:a68e6828d896

Global stores and transactions are working. Definately leaks memory on retries. Probably a fair number of bugs to work out. However, a basic test program works.
author Mike Pavone <pavone@retrodev.com>
date Fri, 19 Nov 2010 04:04:14 -0500
parents e556416e9c91
children 7bbdc034e347
line wrap: on
line diff
--- a/ctobin	Tue Nov 16 21:53:18 2010 -0500
+++ b/ctobin	Fri Nov 19 04:04:14 2010 -0500
@@ -20,8 +20,8 @@
 
 file=$1
 shift
-echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c"
-$CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c
+echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c transaction.c"
+$CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c transaction.c
 
 cd ..