Remove obsolete JobQueue thread tracking

This commit is contained in:
Vinnie Falco
2016-02-19 20:11:19 -05:00
parent 9ab5611c65
commit e8b75b80c2
3 changed files with 0 additions and 24 deletions

View File

@@ -92,10 +92,6 @@ public:
// Cannot be const because LoadMonitor has no const methods.
bool isOverloaded ();
/** Get the Job corresponding to a thread. If no thread, use the current
thread. */
Job* getJobForThread(std::thread::id const& id = {}) const;
// Cannot be const because LoadMonitor has no const methods.
Json::Value getJson (int c = 0);
@@ -109,8 +105,6 @@ private:
JobDataMap m_jobData;
JobTypeData m_invalidJobData;
std::map <std::thread::id, Job*> m_threadIds;
// The number of jobs currently in processTask()
int m_processCount;