Remove ConcurrentObject and rename to SharedData

This commit is contained in:
Vinnie Falco
2013-06-30 09:55:18 -07:00
parent 02f137ace8
commit 2fefe6ca8d
12 changed files with 48 additions and 65 deletions

View File

@@ -133,14 +133,14 @@ int rippleMain (int argc, char** argv)
// At exit, reports all memory blocks which have not been freed.
//
#if 1
//Debug::setHeapReportLeaks (false);
Debug::setHeapReportLeaks (false);
#else
// This is some temporary leak checking test code
//
Debug::setHeapReportLeaks (true);
Debug::setHeapReportLeaks (false);
malloc (512); // Any leaks before this line in the output are from static initializations.
//malloc (512); // Any leaks before this line in the output are from static initializations.
ThreadWithCallQueue t ("test");
GlobalPagedFreeStore::getInstance ();