Began proof-of-concept memory module.
commit1ff34e14da6507063b6b7936374201459d07e756
authorEthereal <ethereal.visage@gmail.com>
Mon, 28 Feb 2011 00:48:25 +0000 (27 17:48 -0700)
committerEthereal <ethereal.visage@gmail.com>
Mon, 28 Feb 2011 00:48:25 +0000 (27 17:48 -0700)
tree671e4320467b7765f4ce463ae9e18b6f70b18207
parent211a36afa81564b966370883b730aeff3bdfc99a
Began proof-of-concept memory module.

This time around, it should actually be possible to perform the initialization
without having to know the address libc is loaded into and the offset of
calloc. Simply allocating a small static buffer and using that while the
initialization occurs should work out quite nicely.
20 files changed:
build/config
include/artisan/gviewport/RectObject.h [new file with mode: 0644]
include/artisan/gviewport/RenderedImage.h
include/informer/Informer.h
modules/memory/SConscript [new file with mode: 0644]
modules/memory/module.conf [new file with mode: 0644]
modules/memory/src/SConscript [new file with mode: 0644]
modules/memory/src/artisan/DataStore.cpp [new file with mode: 0644]
modules/memory/src/artisan/DataStore.h [new file with mode: 0644]
modules/memory/src/artisan/Interface.cpp [new file with mode: 0644]
modules/memory/src/artisan/Interface.h [new file with mode: 0644]
modules/memory/src/artisan/Viewport.cpp [new file with mode: 0644]
modules/memory/src/artisan/Viewport.h [new file with mode: 0644]
modules/memory/src/collector/cpuTime.c [new file with mode: 0644]
modules/memory/src/marshal/Marshal.cpp [new file with mode: 0644]
modules/memory/src/marshal/Marshal.h [new file with mode: 0644]
src/artisan/gviewport/LineObject.cpp
src/artisan/gviewport/RectObject.cpp [new file with mode: 0644]
src/artisan/gviewport/RenderedImage.cpp
src/artisan/gviewport/Renderer.cpp