Remove unused and broken classes

This commit is contained in:
Vinnie Falco
2013-09-19 03:18:10 -07:00
parent f22e91cb9e
commit ff674a32e2
12 changed files with 6 additions and 917 deletions

View File

@@ -436,13 +436,14 @@ public:
};
}
// VFALCO TODO Is it really necessary to init the dbs in parallel?
void initSqliteDbs ()
{
int const count = 4;
ThreadGroup threadGroup (count);
ParallelFor (threadGroup).loop (count, &ApplicationImp::initSqliteDb, this);
// VFALCO NOTE DBs are no longer initialized in parallel, since we
// dont want unowned threads and because ParallelFor
// is broken.
//
for (int i = 0; i < 4; ++i)
initSqliteDb (i);
}
#ifdef SIGINT