# # ChangeLog for src/examples/gc_no_raii # # Generated by Trac 1.2.1 # Apr 20, 2024, 12:49:51 AM Thu, 14 Jan 2016 22:07:19 GMT Thierry Delisle [a2b2761] * src/examples/gc_no_raii/internal/state.c (deleted) * src/examples/gc_no_raii/premake4.lua (modified) * src/examples/gc_no_raii/src/gc.h (moved) * src/examples/gc_no_raii/src/gcpointers.c (moved) * src/examples/gc_no_raii/src/gcpointers.h (moved) * src/examples/gc_no_raii/src/gctest.c (moved) * src/examples/gc_no_raii/src/internal/collector.h (moved) * src/examples/gc_no_raii/src/internal/gc_tools.h (moved) * src/examples/gc_no_raii/src/internal/globals.h (moved) * src/examples/gc_no_raii/src/internal/object_header.h (moved) * src/examples/gc_no_raii/src/internal/state.c (added) * src/examples/gc_no_raii/src/internal/state.h (moved) * src/examples/gc_no_raii/src/tools.h (moved) * src/examples/gc_no_raii/src/tools/checks.h (moved) * src/examples/gc_no_raii/src/tools/print.c (moved) * src/examples/gc_no_raii/src/tools/print.h (moved) moved files src dir and added cofigurations to run preprocessor on cfiles Thu, 14 Jan 2016 20:09:56 GMT Thierry Delisle [e47f529] * src/examples/gc_no_raii/gcpointers.c (modified) * src/examples/gc_no_raii/internal/collector.h (added) * src/examples/gc_no_raii/internal/gc_tools.h (added) * src/examples/gc_no_raii/internal/globals.h (added) * src/examples/gc_no_raii/internal/object_header.h (moved) * src/examples/gc_no_raii/internal/state.c (added) * src/examples/gc_no_raii/internal/state.h (added) * src/examples/gc_no_raii/premake4.lua (modified) * src/examples/gc_no_raii/tools.h (modified) * src/examples/gc_no_raii/tools/print.h (modified) more conversion and compile seems to work well Thu, 14 Jan 2016 17:36:39 GMT Thierry Delisle [15db1ab] * .gitignore (modified) * src/examples/gc_no_raii/cfa (added) * src/examples/gc_no_raii/gc-internal/object_header.h (added) * src/examples/gc_no_raii/gc.h (added) * src/examples/gc_no_raii/gcpointers.c (added) * src/examples/gc_no_raii/gcpointers.h (added) * src/examples/gc_no_raii/gctest.c (added) * src/examples/gc_no_raii/premake4.lua (added) * src/examples/gc_no_raii/regen_makefile.sh (added) * src/examples/gc_no_raii/tools.h (added) * src/examples/gc_no_raii/tools/checks.h (added) * src/examples/gc_no_raii/tools/print.c (added) * src/examples/gc_no_raii/tools/print.h (added) added some files for the garbage collector and hack together the ...